pub unsafe extern "C" fn SDL_GetWindowMinimumSize(
    window: *mut SDL_Window,
    w: *mut c_int,
    h: *mut c_int
)
Expand description

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

\param window The window to query. \param w Pointer to variable for storing the minimum width, may be NULL \param h Pointer to variable for storing the minimum height, may be NULL

\sa SDL_GetWindowMaximumSize() \sa SDL_SetWindowMinimumSize()