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

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

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

\since This function is available since SDL 2.0.0.

\sa SDL_GetWindowMinimumSize \sa SDL_SetWindowMaximumSize