Lines Matching defs:SDL_cond
132 /** The SDL condition variable structure, defined in SDL_cond.c */
133 struct SDL_cond;
134 typedef struct SDL_cond SDL_cond;
138 extern DECLSPEC SDL_cond * SDLCALL SDL_CreateCond(void);
141 extern DECLSPEC void SDLCALL SDL_DestroyCond(SDL_cond *cond);
146 extern DECLSPEC int SDLCALL SDL_CondSignal(SDL_cond *cond);
151 extern DECLSPEC int SDLCALL SDL_CondBroadcast(SDL_cond *cond);
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);