2 SDL - Simple DirectMedia Layer
3 Copyright (C) 1997-2006 Sam Lantinga
5 This library is free software; you can redistribute it and/or
6 modify it under the terms of the GNU Lesser General Public
7 License as published by the Free Software Foundation; either
8 version 2.1 of the License, or (at your option) any later version.
10 This library is distributed in the hope that it will be useful,
11 but WITHOUT ANY WARRANTY; without even the implied warranty of
12 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
13 Lesser General Public License for more details.
15 You should have received a copy of the GNU Lesser General Public
16 License along with this library; if not, write to the Free Software
17 Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
23 #ifndef _SDL_config_win32_h
24 #define _SDL_config_win32_h
26 #include "SDL_platform.h"
28 /* This is a set of defines to configure the SDL features */
31 #define HAVE_STDINT_H 1
32 #elif defined(_MSC_VER)
33 typedef signed __int8
int8_t;
34 typedef unsigned __int8
uint8_t;
35 typedef signed __int16
int16_t;
36 typedef unsigned __int16
uint16_t;
37 typedef signed __int32
int32_t;
38 typedef unsigned __int32
uint32_t;
39 typedef signed __int64
int64_t;
40 typedef unsigned __int64
uint64_t;
41 #ifndef _UINTPTR_T_DEFINED
43 typedef unsigned __int64
uintptr_t;
45 typedef unsigned int uintptr_t;
47 #define _UINTPTR_T_DEFINED
49 #else /* !__GNUC__ && !_MSC_VER */
50 typedef signed char int8_t;
51 typedef unsigned char uint8_t;
52 typedef signed short int16_t;
53 typedef unsigned short uint16_t;
54 typedef signed int int32_t;
55 typedef unsigned int uint32_t;
56 typedef signed long long int64_t;
57 typedef unsigned long long uint64_t;
58 #ifndef _SIZE_T_DEFINED_
59 #define _SIZE_T_DEFINED_
60 typedef unsigned int size_t;
62 typedef unsigned int uintptr_t;
63 #endif /* __GNUC__ || _MSC_VER */
64 #define SDL_HAS_64BIT_TYPE 1
66 /* Enabled for SDL 1.2 (binary compatibility) */
70 #define HAVE_STDIO_H 1
71 #define STDC_HEADERS 1
72 #define HAVE_STRING_H 1
73 #define HAVE_CTYPE_H 1
76 #define HAVE_SIGNAL_H 1
79 /* C library functions */
82 #define HAVE_REALLOC 1
89 #define HAVE_MEMMOVE 1
92 #define HAVE__STRREV 1
93 #define HAVE__STRUPR 1
94 #define HAVE__STRLWR 1
96 #define HAVE_STRRCHR 1
100 #define HAVE__ULTOA 1
101 #define HAVE_STRTOL 1
102 #define HAVE_STRTOUL 1
103 #define HAVE_STRTOLL 1
104 #define HAVE_STRTOD 1
107 #define HAVE_STRCMP 1
108 #define HAVE_STRNCMP 1
109 #define HAVE__STRICMP 1
110 #define HAVE__STRNICMP 1
111 #define HAVE_SSCANF 1
113 #define HAVE_STDARG_H 1
114 #define HAVE_STDDEF_H 1
117 /* Enable various audio drivers */
119 #define SDL_AUDIO_DRIVER_DSOUND 1
121 #define SDL_AUDIO_DRIVER_WAVEOUT 1
122 #define SDL_AUDIO_DRIVER_DISK 1
123 #define SDL_AUDIO_DRIVER_DUMMY 1
125 /* Enable various cdrom drivers */
127 #define SDL_CDROM_DISABLED 1
129 #define SDL_CDROM_WIN32 1
132 /* Enable various input drivers */
134 #define SDL_JOYSTICK_DISABLED 1
136 #define SDL_JOYSTICK_WINMM 1
139 /* Enable various shared object loading systems */
140 #define SDL_LOADSO_WIN32 1
142 /* Enable various threading systems */
143 #define SDL_THREAD_WIN32 1
145 /* Enable various timer systems */
147 #define SDL_TIMER_WINCE 1
149 #define SDL_TIMER_WIN32 1
152 /* Enable various video drivers */
154 #define SDL_VIDEO_DRIVER_GAPI 1
157 #define SDL_VIDEO_DRIVER_DDRAW 1
159 #define SDL_VIDEO_DRIVER_DUMMY 1
160 #define SDL_VIDEO_DRIVER_WINDIB 1
162 /* Enable OpenGL support */
164 #define SDL_VIDEO_OPENGL 1
165 #define SDL_VIDEO_OPENGL_WGL 1
168 /* Enable assembly routines (Win64 doesn't have inline asm) */
170 #define SDL_ASSEMBLY_ROUTINES 1
173 #endif /* _SDL_config_win32_h */