Tao.Sdl SDK Documentation

Sdl.SDL_LockMutex Method 

Lock the mutex (Returns 0, or -1 on error)

[Visual Basic]
Public Shared Function SDL_LockMutex( _
   ByVal m As IntPtr _
) As Integer
[C#]
public static int SDL_LockMutex(
   IntPtr m
);

Return Value

Lock the mutex (Returns 0, or -1 on error)

Remarks

Binds to C-function call in SDL_mutex.h:

#define SDL_LockMutex(m)    SDL_mutexP(m)

See Also

Sdl Class | Tao.Sdl Namespace