Function SDL_GetWindowFlags

pub unsafe extern "C" fn SDL_GetWindowFlags(
    window: *mut SDL_Window,
) -> u64
Available on crate feature dep_sdl3 only.
Expand description

Get the window flags.

§Parameters

  • window: the window to query.

§Return value

Returns a mask of the SDL_WindowFlags associated with window.

§Thread safety

This function should only be called on the main thread.

§Availability

This function is available since SDL 3.2.0.

§See also