Function SDL_ResumeHaptic

pub unsafe extern "C" fn SDL_ResumeHaptic(
    haptic: *mut SDL_Haptic,
) -> bool
Available on crate feature dep_sdl3 only.
Expand description

Resume a haptic device.

Call to unpause after SDL_PauseHaptic().

§Parameters

§Return value

Returns true on success or false on failure; call SDL_GetError() for more information.

§Availability

This function is available since SDL 3.2.0.

§See also