Home | History | Annotate | Download | only in include

Lines Matching defs:SDL_mutex

26 /** @file SDL_mutex.h
54 /** The SDL mutex structure, defined in SDL_mutex.c */
55 struct SDL_mutex;
56 typedef struct SDL_mutex SDL_mutex;
59 extern DECLSPEC SDL_mutex * SDLCALL SDL_CreateMutex(void);
65 extern DECLSPEC int SDLCALL SDL_mutexP(SDL_mutex *mutex);
74 extern DECLSPEC int SDLCALL SDL_mutexV(SDL_mutex *mutex);
77 extern DECLSPEC void SDLCALL SDL_DestroyMutex(SDL_mutex *mutex);
158 extern DECLSPEC int SDLCALL SDL_CondWait(SDL_cond *cond, SDL_mutex *mut);
166 extern DECLSPEC int SDLCALL SDL_CondWaitTimeout(SDL_cond *cond, SDL_mutex *mutex, Uint32 ms);