Scroll to navigation

SDL_SetWindowModalFor(3) SDL3 FUNCTIONS SDL_SetWindowModalFor(3)

NAME

SDL_SetWindowModalFor - Set the window as a modal for another window.

SYNOPSIS

#include "SDL3/SDL.h"
int SDL_SetWindowModalFor(SDL_Window *modal_window, SDL_Window *parent_window);

FUNCTION PARAMETERS

the window that should be set modal
the parent window for the modal window

RETURN VALUE

Returns 0 on success or a negative error code on failure; call

SDL_GetError () for more information.

AVAILABILITY

This function is available since SDL 3.0.0.

SDL 3.1.0 SDL