Skip to main content

SDL_GetWindowKeyboardGrab

Function SDL_GetWindowKeyboardGrab 

Source
pub unsafe extern "C" fn SDL_GetWindowKeyboardGrab(
    window: *mut SDL_Window,
) -> bool
Expand description

Get a window’s keyboard grab mode.

Parameter: window the window to query. Returns: true if keyboard is grabbed, and false otherwise.

Thread Safety: This function should only be called on the main thread.

Available Since: This function is available since SDL 3.2.0.

See Also: SDL_SetWindowKeyboardGrab