Set the minimum size of a window's client area.
int SDL_SetWindowMinimumSize(SDL_Window *window, int min_w, int min_h);
window | the window to change |
min_w | the minimum width of the window, or 0 for no limit |
min_h | the minimum height of the window, or 0 for no limit |
Returns 0 on success or a negative error code on failure; call SDL_GetError() for more information.
This function is available since SDL 3.0.0.