Function SDL_GetWindowMinimumSize

pub unsafe extern "C" fn SDL_GetWindowMinimumSize(
    window: *mut SDL_Window,
    w: *mut i32,
    h: *mut i32,
)
Available on crate feature dep_sdl2 only.
Expand description

Get the minimum size of a window’s client area.

\param window the window to query \param w a pointer filled in with the minimum width of the window, may be NULL \param h a pointer filled in with the minimum height of the window, may be NULL

\since This function is available since SDL 2.0.0.

\sa SDL_GetWindowMaximumSize \sa SDL_SetWindowMinimumSize