DRAFT |
SDL_CreateCond
Use this function to create a condition variable.
Syntax
SDL_cond* SDL_CreateCond(void)
Return Value
Returns the condition variable that is created.
Code Examples
*
SDL_cond *cond;
cond=SDL_CreateCond();
.
.
/* Do stuff */
.
.
SDL_DestroyCond(cond);
*
Should this example be Included on the SDL_DestroyCond page?
Remarks
You can add useful comments here
Since this has no params does it actually create the structure or does it just assign an existing structure to a thread?