table of contents
other versions
- testing 3.2.10+ds-1
- unstable 3.2.10+ds-1
- experimental 3.3~git20250806+ds-1
SDL_MessageBoxData(3type) | SDL3 DATATYPES | SDL_MessageBoxData(3type) |
NAME¶
SDL_MessageBoxData - MessageBox structure containing title, text, window, etc.
SYNOPSIS¶
#include <SDL3/SDL_messagebox.h>
typedef struct SDL_MessageBoxData { SDL_MessageBoxFlags flags; SDL_Window *window; /**< Parent window, can be NULL */ const char *title; /**< UTF-8 title */ const char *message; /**< UTF-8 message text */ int numbuttons; const SDL_MessageBoxButtonData *buttons; const SDL_MessageBoxColorScheme *colorScheme; /**< SDL_MessageBoxColorScheme, can be NULL to use system settings */ } SDL_MessageBoxData;
AVAILABILITY¶
This struct is available since SDL 3.2.0.
SDL 3.3.0 | Simple Directmedia Layer |