Tao.Sdl SDK Documentation

Sdl.SDL_RemoveTimer Method 

Remove a timer which was added with SDL_AddTimer.

[Visual Basic]
Public Shared Function SDL_RemoveTimer( _
   ByVal t As SDL_TimerID _
) As Integer
[C#]
public static int SDL_RemoveTimer(
   SDL_TimerID t
);

Parameters

t
The timer ID to remove.

Return Value

A boolean value indicating success. SDL_TRUE or SDL_FALSE.

Remarks

Binds to C-function call in SDL_timer.h:

extern DECLSPEC SDL_bool SDLCALL SDL_RemoveTimer(SDL_TimerID t)

See Also

Sdl Class | Tao.Sdl Namespace | SDL_AddTimer