pub unsafe extern "C" fn SDL_GetWindowMinimumSize(
    window: *mut SDL_Window,
    w: *mut c_int,
    h: *mut c_int
)
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