|
⇤ ← Revision 1 as of 2010-05-25 05:07:35
Size: 772
Comment: create page, add content (Wed Mar 10 ver; changeset 4428)
|
Size: 790
Comment: update content - standard return value
|
| Deletions are marked like this. | Additions are marked like this. |
| Line 19: | Line 19: |
| Returns 0 on success, or -1 on failure; call [[SDL_GetError]]() for more information. | Returns 0 on success or a negative error code on failure; call [[SDL_GetError]]() for more information. |
DRAFT |
SDL_mutexP
Use this function to lock the mutex.
Syntax
int SDL_mutexP(SDL_mutex* mutex)
Function Parameters
mutex |
a pointer to the SDL_mutex structure to be locked |
Return Value
Returns 0 on success or a negative error code on failure; call SDL_GetError() for more information.
Code Examples
You can add your code example here
Remarks
green
???
You can add useful comments here
Related Functions
SDL_mutexV ???
