Wiki Page Content

Differences between revisions 4 and 5
Revision 4 as of 2010-09-09 20:21:07
Size: 986
Editor: SheenaSmith
Comment: minor change
Revision 5 as of 2010-10-17 19:04:28
Size: 936
Editor: SheenaSmith
Comment: update content - pointers, structs
Deletions are marked like this. Additions are marked like this.
Line 16: Line 16:
Returns ^a pointer to the SDL_cond structure that is created / filled with the condition variable^. Returns ^the condition variable that is created^.

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);

*
green

Remarks

You can add useful comments here

green


CategoryAPI, CategoryMutex

None: SDL_CreateCond (last edited 2014-01-11 13:50:10 by PhilippWiesemann)

(Page Info.)
Feedback
Please include your contact information if you'd like to receive a reply.
Submit