Function SDL_RemoveTimer
pub unsafe extern "C" fn SDL_RemoveTimer(id: u32) -> bool
Available on crate feature
dep_sdl3
only.Expand description
Remove a timer created with SDL_AddTimer()
.
§Parameters
id
: the ID of the timer to remove.
§Return value
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.
§Availability
This function is available since SDL 3.2.0.