|
Size: 893
Comment: update content (old wiki)
|
Size: 899
Comment: minor change
|
| Deletions are marked like this. | Additions are marked like this. |
| Line 19: | Line 19: |
| * | |
| Line 30: | Line 31: |
| * |
DRAFT |
SDL_CreateCond
Use this function to create a condition variable.
Syntax
SDL_cond* SDL_CreateCond(void)
Return Value
Returns a pointer to the SDL_cond structure that is created / filled with the condition variable.
Code Examples
*
SDL_cond *cond;
cond=SDL_CreateCond();
.
.
/* Do stuff */
.
.
SDL_DestroyCond(cond);
*
Remarks
You can add useful comments here
green
