Differences between version 2 and predecessor to the previous major change of SDL_CreateMutex(3).
Other diffs: Previous Revision, Previous Author, or view the Annotated Edit History
Newer page: | version 2 | Last edited on Monday, June 3, 2002 6:53:41 pm | by perry | Revert |
Older page: | version 1 | Last edited on Monday, June 3, 2002 6:53:41 pm | by perry | Revert |
@@ -1,6 +1,6 @@
-SDL_CreateMutex
-!!!SDL_CreateMutex
+SDL_!
CreateMutex
+!!!SDL_!
CreateMutex
NAME
SYNOPSIS
DESCRIPTION
EXAMPLES
@@ -8,32 +8,32 @@
----
!!NAME
-SDL_CreateMutex- Create a mutex
+SDL_!
CreateMutex- Create a mutex
!!SYNOPSIS
__#include
__
-__SDL_mutex *SDL_CreateMutex__(__void__);
+__SDL_mutex *SDL_!
CreateMutex__(__void__);
!!DESCRIPTION
Create a new, unlocked mutex.
!!EXAMPLES
SDL_mutex *mut;
-mut=SDL_CreateMutex();
+mut=SDL_!
CreateMutex();
.
.
if(SDL_mutexP(mut)==-1){
fprintf(stderr,
!!SEE ALSO
__SDL_mutexP__, __SDL_mutexV__,
-__SDL_DestroyMutex__
+__SDL_!
DestroyMutex__
----