Lines Matching refs:DECLSPEC
155 extern DECLSPEC SDL_mutex *SDLCALL SDL_CreateMutex(void);
173 extern DECLSPEC int SDLCALL SDL_LockMutex(SDL_mutex * mutex) SDL_ACQUIRE(mutex);
196 extern DECLSPEC int SDLCALL SDL_TryLockMutex(SDL_mutex * mutex) SDL_TRY_ACQUIRE(0, mutex);
215 extern DECLSPEC int SDLCALL SDL_UnlockMutex(SDL_mutex * mutex) SDL_RELEASE(mutex);
236 extern DECLSPEC void SDLCALL SDL_DestroyMutex(SDL_mutex * mutex);
272 extern DECLSPEC SDL_sem *SDLCALL SDL_CreateSemaphore(Uint32 initial_value);
291 extern DECLSPEC void SDLCALL SDL_DestroySemaphore(SDL_sem * sem);
318 extern DECLSPEC int SDLCALL SDL_SemWait(SDL_sem * sem);
342 extern DECLSPEC int SDLCALL SDL_SemTryWait(SDL_sem * sem);
367 extern DECLSPEC int SDLCALL SDL_SemWaitTimeout(SDL_sem *sem, Uint32 timeout);
385 extern DECLSPEC int SDLCALL SDL_SemPost(SDL_sem * sem);
397 extern DECLSPEC Uint32 SDLCALL SDL_SemValue(SDL_sem * sem);
425 extern DECLSPEC SDL_cond *SDLCALL SDL_CreateCond(void);
440 extern DECLSPEC void SDLCALL SDL_DestroyCond(SDL_cond * cond);
457 extern DECLSPEC int SDLCALL SDL_CondSignal(SDL_cond * cond);
474 extern DECLSPEC int SDLCALL SDL_CondBroadcast(SDL_cond * cond);
502 extern DECLSPEC int SDLCALL SDL_CondWait(SDL_cond * cond, SDL_mutex * mutex);
531 extern DECLSPEC int SDLCALL SDL_CondWaitTimeout(SDL_cond * cond,