Tao.Sdl SDK Documentation

Sdl.SDL_SemPost Method 

Atomically increases the semaphore's count (not blocking), returns 0, or -1 on error.

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

Return Value

Atomically increases the semaphore's count (not blocking), returns 0, or -1 on error.

Remarks

Binds to C-function call in SDL_mutex.h:

extern DECLSPEC int SDLCALL SDL_SemPost(SDL_sem *sem)

See Also

Sdl Class | Tao.Sdl Namespace