Tao.Sdl SDK Documentation

Sdl.SDL_UnlockMutex Method 

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

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

Return Value

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

Remarks

Binds to C-function call in SDL_mutex.h:

#define SDL_UnlockMutex(m)    SDL_mutexP(m)

See Also

Sdl Class | Tao.Sdl Namespace