mirror of
https://github.com/isledecomp/isle-portable.git
synced 2025-08-03 07:36:20 -04:00

* Emscripten port * Fix NCC * Update CMakeLists.txt Co-authored-by: Anonymous Maarten <madebr@users.noreply.github.com> * Update CMakeLists.txt Co-authored-by: Anonymous Maarten <madebr@users.noreply.github.com> * Update CMakeLists.txt Co-authored-by: Anonymous Maarten <madebr@users.noreply.github.com> * Update CMakeLists.txt * cmake: set iniparser cmake options in local scope * ci: try adding emscripten to test matrix * cmake: try to make CMake install package more usable * cmake: fix typo * Update CMakeLists.txt Co-authored-by: Anonymous Maarten <madebr@users.noreply.github.com> * Add support for .ini loading * Different default full screen behavior for Emscripten * Add comments * Add web platform --------- Co-authored-by: Anonymous Maarten <madebr@users.noreply.github.com> Co-authored-by: Anonymous Maarten <anonymous.maarten@gmail.com>
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
|