Subversion Repositories Games.Carmageddon

Rev

Details | Last modification | View Log | RSS feed

Rev Author Line No. Line
9 pmbaty 1
/*
2
  Simple DirectMedia Layer
3
  Copyright (C) 1997-2023 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
 
28
typedef signed char        int8_t;
29
typedef unsigned char      uint8_t;
30
typedef signed short       int16_t;
31
typedef unsigned short     uint16_t;
32
typedef signed int         int32_t;
33
typedef unsigned int       uint32_t;
34
typedef signed long long   int64_t;
35
typedef unsigned long long uint64_t;
36
typedef 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_ */