mirror of
https://github.com/isledecomp/isle-portable.git
synced 2026-02-03 12:31:15 +00:00
14 lines
268 B
C
14 lines
268 B
C
#ifndef EMSCRIPTEN_MESSAGE_BOX_H
|
|
#define EMSCRIPTEN_MESSAGE_BOX_H
|
|
|
|
#include <SDL3/SDL_messagebox.h>
|
|
|
|
bool Emscripten_ShowSimpleMessageBox(
|
|
SDL_MessageBoxFlags flags,
|
|
const char* title,
|
|
const char* message,
|
|
SDL_Window* window
|
|
);
|
|
|
|
#endif // EMSCRIPTEN_MESSAGE_BOX_H
|