Home | History | Annotate | Download | only in include

Lines Matching refs:SDL_cond

121 /* The SDL condition variable structure, defined in SDL_cond.c */
122 struct SDL_cond;
123 typedef struct SDL_cond SDL_cond;
126 extern DECLSPEC SDL_cond * SDLCALL SDL_CreateCond(void);
129 extern DECLSPEC void SDLCALL SDL_DestroyCond(SDL_cond *cond);
134 extern DECLSPEC int SDLCALL SDL_CondSignal(SDL_cond *cond);
139 extern DECLSPEC int SDLCALL SDL_CondBroadcast(SDL_cond *cond);
146 extern DECLSPEC int SDLCALL SDL_CondWait(SDL_cond *cond, SDL_mutex *mut);
154 extern DECLSPEC int SDLCALL SDL_CondWaitTimeout(SDL_cond *cond, SDL_mutex *mutex, Uint32 ms);