Skip to main content

SDL_RemoveTimer

Function SDL_RemoveTimer 

Source
pub unsafe extern "C" fn SDL_RemoveTimer(id: SDL_TimerID) -> bool
Expand description

Remove a timer created with SDL_AddTimer().

Parameter: id the ID of the timer to remove. Returns: true on success or false on failure; call SDL_GetError() for more information.

Thread Safety: It is safe to call this function from any thread.

Available Since: This function is available since SDL 3.2.0.

See Also: SDL_AddTimer