summaryrefslogtreecommitdiff
path: root/contrib/SDL-3.2.8/src/video/haiku/SDL_bmessagebox.h
diff options
context:
space:
mode:
Diffstat (limited to 'contrib/SDL-3.2.8/src/video/haiku/SDL_bmessagebox.h')
-rw-r--r--contrib/SDL-3.2.8/src/video/haiku/SDL_bmessagebox.h42
1 files changed, 42 insertions, 0 deletions
diff --git a/contrib/SDL-3.2.8/src/video/haiku/SDL_bmessagebox.h b/contrib/SDL-3.2.8/src/video/haiku/SDL_bmessagebox.h
new file mode 100644
index 0000000..e2800af
--- /dev/null
+++ b/contrib/SDL-3.2.8/src/video/haiku/SDL_bmessagebox.h
@@ -0,0 +1,42 @@
1/*
2 Simple DirectMedia Layer
3 Copyright (C) 1997-2025 Sam Lantinga <slouken@libsdl.org>
4 Copyright (C) 2018-2019 EXL <exlmotodev@gmail.com>
5
6 This software is provided 'as-is', without any express or implied
7 warranty. In no event will the authors be held liable for any damages
8 arising from the use of this software.
9
10 Permission is granted to anyone to use this software for any purpose,
11 including commercial applications, and to alter it and redistribute it
12 freely, subject to the following restrictions:
13
14 1. The origin of this software must not be misrepresented; you must not
15 claim that you wrote the original software. If you use this software
16 in a product, an acknowledgment in the product documentation would be
17 appreciated but is not required.
18 2. Altered source versions must be plainly marked as such, and must not be
19 misrepresented as being the original software.
20 3. This notice may not be removed or altered from any source distribution.
21*/
22
23#ifndef SDL_BMESSAGEBOX_H
24#define SDL_BMESSAGEBOX_H
25
26#include "SDL_internal.h"
27
28#ifdef SDL_VIDEO_DRIVER_HAIKU
29
30#ifdef __cplusplus
31extern "C" {
32#endif
33
34extern bool HAIKU_ShowMessageBox(const SDL_MessageBoxData *messageboxdata, int *buttonID);
35
36#ifdef __cplusplus
37}
38#endif
39
40#endif // SDL_VIDEO_DRIVER_HAIKU
41
42#endif