summaryrefslogtreecommitdiff
path: root/src/contrib/SDL-2.30.2/include/SDL_config_ngage.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/contrib/SDL-2.30.2/include/SDL_config_ngage.h')
-rw-r--r--src/contrib/SDL-2.30.2/include/SDL_config_ngage.h89
1 files changed, 89 insertions, 0 deletions
diff --git a/src/contrib/SDL-2.30.2/include/SDL_config_ngage.h b/src/contrib/SDL-2.30.2/include/SDL_config_ngage.h
new file mode 100644
index 0000000..61c26c2
--- /dev/null
+++ b/src/contrib/SDL-2.30.2/include/SDL_config_ngage.h
@@ -0,0 +1,89 @@
1/*
2 Simple DirectMedia Layer
3 Copyright (C) 1997-2024 Sam Lantinga <slouken@libsdl.org>
4
5 This software is provided 'as-is', without any express or implied
6 warranty. In no event will the authors be held liable for any damages
7 arising from the use of this software.
8
9 Permission is granted to anyone to use this software for any purpose,
10 including commercial applications, and to alter it and redistribute it
11 freely, subject to the following restrictions:
12
13 1. The origin of this software must not be misrepresented; you must not
14 claim that you wrote the original software. If you use this software
15 in a product, an acknowledgment in the product documentation would be
16 appreciated but is not required.
17 2. Altered source versions must be plainly marked as such, and must not be
18 misrepresented as being the original software.
19 3. This notice may not be removed or altered from any source distribution.
20*/
21
22#ifndef SDL_config_ngage_h_
23#define SDL_config_ngage_h_
24#define SDL_config_h_
25
26#include "SDL_platform.h"
27
28typedef signed char int8_t;
29typedef unsigned char uint8_t;
30typedef signed short int16_t;
31typedef unsigned short uint16_t;
32typedef signed int int32_t;
33typedef unsigned int uint32_t;
34typedef signed long long int64_t;
35typedef unsigned long long uint64_t;
36typedef unsigned long uintptr_t;
37
38#define HAVE_STDARG_H 1
39#define HAVE_STDDEF_H 1
40#define HAVE_STDIO_H 1
41#define HAVE_STDLIB_H 1
42#define HAVE_MATH_H 1
43#define HAVE_CEIL 1
44#define HAVE_COPYSIGN 1
45#define HAVE_COS 1
46#define HAVE_EXP 1
47#define HAVE_FABS 1
48#define HAVE_FLOOR 1
49#define HAVE_LOG 1
50#define HAVE_LOG10 1
51#define HAVE_SCALBN 1
52#define HAVE_SIN 1
53#define HAVE_SQRT 1
54#define HAVE_TAN 1
55#define HAVE_MALLOC 1
56#define SDL_MAIN_NEEDED 1
57#define LACKS_SYS_MMAN_H 1
58
59/* Enable the N-Gage thread support (src/thread/ngage/\*.c) */
60#define SDL_THREAD_NGAGE 1
61
62/* Enable the N-Gage timer support (src/timer/ngage/\*.c) */
63#define SDL_TIMER_NGAGE 1
64
65/* Enable the N-Gage video driver (src/video/ngage/\*.c) */
66#define SDL_VIDEO_DRIVER_NGAGE 1
67
68/* Enable the dummy audio driver (src/audio/dummy/\*.c) */
69#define SDL_AUDIO_DRIVER_DUMMY 1
70
71/* Enable the stub joystick driver (src/joystick/dummy/\*.c) */
72#define SDL_JOYSTICK_DISABLED 1
73
74/* Enable the stub haptic driver (src/haptic/dummy/\*.c) */
75#define SDL_HAPTIC_DISABLED 1
76
77/* Enable the stub HIDAPI */
78#define SDL_HIDAPI_DISABLED 1
79
80/* Enable the stub sensor driver (src/sensor/dummy/\*.c) */
81#define SDL_SENSOR_DISABLED 1
82
83/* Enable the stub shared object loader (src/loadso/dummy/\*.c) */
84#define SDL_LOADSO_DISABLED 1
85
86/* Enable the dummy filesystem driver (src/filesystem/dummy/\*.c) */
87#define SDL_FILESYSTEM_DUMMY 1
88
89#endif /* SDL_config_ngage_h_ */