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

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

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

\sa SDL_GetWindowMinimumSize() \sa SDL_SetWindowMaximumSize()