dludwig@8316
|
1 |
/*
|
dludwig@8316
|
2 |
Simple DirectMedia Layer
|
slouken@10737
|
3 |
Copyright (C) 1997-2017 Sam Lantinga <slouken@libsdl.org>
|
dludwig@8316
|
4 |
|
dludwig@8316
|
5 |
This software is provided 'as-is', without any express or implied
|
dludwig@8316
|
6 |
warranty. In no event will the authors be held liable for any damages
|
dludwig@8316
|
7 |
arising from the use of this software.
|
dludwig@8316
|
8 |
|
dludwig@8316
|
9 |
Permission is granted to anyone to use this software for any purpose,
|
dludwig@8316
|
10 |
including commercial applications, and to alter it and redistribute it
|
dludwig@8316
|
11 |
freely, subject to the following restrictions:
|
dludwig@8316
|
12 |
|
dludwig@8316
|
13 |
1. The origin of this software must not be misrepresented; you must not
|
dludwig@8316
|
14 |
claim that you wrote the original software. If you use this software
|
dludwig@8316
|
15 |
in a product, an acknowledgment in the product documentation would be
|
dludwig@8316
|
16 |
appreciated but is not required.
|
dludwig@8316
|
17 |
2. Altered source versions must be plainly marked as such, and must not be
|
dludwig@8316
|
18 |
misrepresented as being the original software.
|
dludwig@8316
|
19 |
3. This notice may not be removed or altered from any source distribution.
|
dludwig@8316
|
20 |
*/
|
dludwig@8316
|
21 |
|
slouken@10638
|
22 |
#ifndef SDL_config_winrt_h_
|
slouken@10638
|
23 |
#define SDL_config_winrt_h_
|
slouken@10903
|
24 |
#define SDL_config_h_
|
dludwig@8316
|
25 |
|
dludwig@8316
|
26 |
#include "SDL_platform.h"
|
dludwig@8316
|
27 |
|
dludwig@9924
|
28 |
/* Make sure the Windows SDK's NTDDI_VERSION macro gets defined. This is used
|
dludwig@9924
|
29 |
by SDL to determine which version of the Windows SDK is being used.
|
dludwig@9924
|
30 |
*/
|
dludwig@9924
|
31 |
#include <sdkddkver.h>
|
dludwig@9924
|
32 |
|
dludwig@9924
|
33 |
/* Define possibly-undefined NTDDI values (used when compiling SDL against
|
dludwig@9924
|
34 |
older versions of the Windows SDK.
|
dludwig@9924
|
35 |
*/
|
dludwig@9924
|
36 |
#ifndef NTDDI_WINBLUE
|
dludwig@9924
|
37 |
#define NTDDI_WINBLUE 0x06030000
|
dludwig@9924
|
38 |
#endif
|
dludwig@9931
|
39 |
#ifndef NTDDI_WIN10
|
dludwig@9931
|
40 |
#define NTDDI_WIN10 0x0A000000
|
dludwig@9931
|
41 |
#endif
|
dludwig@9924
|
42 |
|
dludwig@8316
|
43 |
/* This is a set of defines to configure the SDL features */
|
dludwig@8316
|
44 |
|
dludwig@8316
|
45 |
#if !defined(_STDINT_H_) && (!defined(HAVE_STDINT_H) || !_HAVE_STDINT_H)
|
dludwig@8316
|
46 |
#if defined(__GNUC__) || defined(__DMC__) || defined(__WATCOMC__)
|
dludwig@8316
|
47 |
#define HAVE_STDINT_H 1
|
dludwig@8316
|
48 |
#elif defined(_MSC_VER)
|
dludwig@8316
|
49 |
typedef signed __int8 int8_t;
|
dludwig@8316
|
50 |
typedef unsigned __int8 uint8_t;
|
dludwig@8316
|
51 |
typedef signed __int16 int16_t;
|
dludwig@8316
|
52 |
typedef unsigned __int16 uint16_t;
|
dludwig@8316
|
53 |
typedef signed __int32 int32_t;
|
dludwig@8316
|
54 |
typedef unsigned __int32 uint32_t;
|
dludwig@8316
|
55 |
typedef signed __int64 int64_t;
|
dludwig@8316
|
56 |
typedef unsigned __int64 uint64_t;
|
dludwig@8316
|
57 |
#ifndef _UINTPTR_T_DEFINED
|
dludwig@8316
|
58 |
#ifdef _WIN64
|
dludwig@8316
|
59 |
typedef unsigned __int64 uintptr_t;
|
dludwig@8316
|
60 |
#else
|
dludwig@8316
|
61 |
typedef unsigned int uintptr_t;
|
dludwig@8316
|
62 |
#endif
|
dludwig@8316
|
63 |
#define _UINTPTR_T_DEFINED
|
dludwig@8316
|
64 |
#endif
|
dludwig@8316
|
65 |
/* Older Visual C++ headers don't have the Win64-compatible typedefs... */
|
dludwig@8316
|
66 |
#if ((_MSC_VER <= 1200) && (!defined(DWORD_PTR)))
|
dludwig@8316
|
67 |
#define DWORD_PTR DWORD
|
dludwig@8316
|
68 |
#endif
|
dludwig@8316
|
69 |
#if ((_MSC_VER <= 1200) && (!defined(LONG_PTR)))
|
dludwig@8316
|
70 |
#define LONG_PTR LONG
|
dludwig@8316
|
71 |
#endif
|
dludwig@8316
|
72 |
#else /* !__GNUC__ && !_MSC_VER */
|
dludwig@8316
|
73 |
typedef signed char int8_t;
|
dludwig@8316
|
74 |
typedef unsigned char uint8_t;
|
dludwig@8316
|
75 |
typedef signed short int16_t;
|
dludwig@8316
|
76 |
typedef unsigned short uint16_t;
|
dludwig@8316
|
77 |
typedef signed int int32_t;
|
dludwig@8316
|
78 |
typedef unsigned int uint32_t;
|
dludwig@8316
|
79 |
typedef signed long long int64_t;
|
dludwig@8316
|
80 |
typedef unsigned long long uint64_t;
|
dludwig@8316
|
81 |
#ifndef _SIZE_T_DEFINED_
|
dludwig@8316
|
82 |
#define _SIZE_T_DEFINED_
|
dludwig@8316
|
83 |
typedef unsigned int size_t;
|
dludwig@8316
|
84 |
#endif
|
dludwig@8316
|
85 |
typedef unsigned int uintptr_t;
|
dludwig@8316
|
86 |
#endif /* __GNUC__ || _MSC_VER */
|
dludwig@8316
|
87 |
#endif /* !_STDINT_H_ && !HAVE_STDINT_H */
|
dludwig@8316
|
88 |
|
dludwig@8316
|
89 |
#ifdef _WIN64
|
dludwig@8316
|
90 |
# define SIZEOF_VOIDP 8
|
dludwig@8316
|
91 |
#else
|
dludwig@8316
|
92 |
# define SIZEOF_VOIDP 4
|
dludwig@8316
|
93 |
#endif
|
dludwig@8316
|
94 |
|
dludwig@8316
|
95 |
/* Useful headers */
|
icculus@8751
|
96 |
#define HAVE_DXGI_H 1
|
dludwig@8973
|
97 |
#if WINAPI_FAMILY != WINAPI_FAMILY_PHONE_APP
|
slouken@8972
|
98 |
#define HAVE_XINPUT_H 1
|
dludwig@8973
|
99 |
#endif
|
dludwig@8363
|
100 |
#define HAVE_LIBC 1
|
dludwig@8316
|
101 |
#define HAVE_STDIO_H 1
|
dludwig@8316
|
102 |
#define STDC_HEADERS 1
|
dludwig@8316
|
103 |
#define HAVE_STRING_H 1
|
dludwig@8316
|
104 |
#define HAVE_CTYPE_H 1
|
dludwig@8316
|
105 |
#define HAVE_MATH_H 1
|
dludwig@8478
|
106 |
#define HAVE_FLOAT_H 1
|
dludwig@8316
|
107 |
#define HAVE_SIGNAL_H 1
|
dludwig@8316
|
108 |
|
dludwig@8316
|
109 |
/* C library functions */
|
dludwig@8316
|
110 |
#define HAVE_MALLOC 1
|
dludwig@8316
|
111 |
#define HAVE_CALLOC 1
|
dludwig@8316
|
112 |
#define HAVE_REALLOC 1
|
dludwig@8316
|
113 |
#define HAVE_FREE 1
|
dludwig@8316
|
114 |
#define HAVE_ALLOCA 1
|
dludwig@8316
|
115 |
#define HAVE_QSORT 1
|
dludwig@8316
|
116 |
#define HAVE_ABS 1
|
dludwig@8316
|
117 |
#define HAVE_MEMSET 1
|
dludwig@8316
|
118 |
#define HAVE_MEMCPY 1
|
dludwig@8316
|
119 |
#define HAVE_MEMMOVE 1
|
dludwig@8316
|
120 |
#define HAVE_MEMCMP 1
|
dludwig@8316
|
121 |
#define HAVE_STRLEN 1
|
dludwig@8316
|
122 |
#define HAVE__STRREV 1
|
dludwig@8316
|
123 |
#define HAVE__STRUPR 1
|
dludwig@8363
|
124 |
//#define HAVE__STRLWR 1 // TODO, WinRT: consider using _strlwr_s instead
|
dludwig@8316
|
125 |
#define HAVE_STRCHR 1
|
dludwig@8316
|
126 |
#define HAVE_STRRCHR 1
|
dludwig@8316
|
127 |
#define HAVE_STRSTR 1
|
dludwig@8440
|
128 |
//#define HAVE_ITOA 1 // TODO, WinRT: consider using _itoa_s instead
|
dludwig@8363
|
129 |
//#define HAVE__LTOA 1 // TODO, WinRT: consider using _ltoa_s instead
|
dludwig@8363
|
130 |
//#define HAVE__ULTOA 1 // TODO, WinRT: consider using _ultoa_s instead
|
dludwig@8316
|
131 |
#define HAVE_STRTOL 1
|
dludwig@8316
|
132 |
#define HAVE_STRTOUL 1
|
dludwig@8460
|
133 |
//#define HAVE_STRTOLL 1
|
dludwig@8316
|
134 |
#define HAVE_STRTOD 1
|
dludwig@8316
|
135 |
#define HAVE_ATOI 1
|
dludwig@8316
|
136 |
#define HAVE_ATOF 1
|
dludwig@8316
|
137 |
#define HAVE_STRCMP 1
|
dludwig@8316
|
138 |
#define HAVE_STRNCMP 1
|
dludwig@8316
|
139 |
#define HAVE__STRICMP 1
|
dludwig@8316
|
140 |
#define HAVE__STRNICMP 1
|
dludwig@8402
|
141 |
#define HAVE_VSNPRINTF 1
|
dludwig@8363
|
142 |
//#define HAVE_SSCANF 1 // TODO, WinRT: consider using sscanf_s instead
|
dludwig@8316
|
143 |
#define HAVE_M_PI 1
|
dludwig@8316
|
144 |
#define HAVE_ATAN 1
|
dludwig@8316
|
145 |
#define HAVE_ATAN2 1
|
dludwig@8316
|
146 |
#define HAVE_CEIL 1
|
dludwig@8478
|
147 |
#define HAVE__COPYSIGN 1
|
dludwig@8316
|
148 |
#define HAVE_COS 1
|
dludwig@8316
|
149 |
#define HAVE_COSF 1
|
dludwig@8316
|
150 |
#define HAVE_FABS 1
|
dludwig@8316
|
151 |
#define HAVE_FLOOR 1
|
dludwig@8316
|
152 |
#define HAVE_LOG 1
|
dludwig@8316
|
153 |
#define HAVE_POW 1
|
dludwig@8460
|
154 |
//#define HAVE_SCALBN 1
|
dludwig@8478
|
155 |
#define HAVE__SCALB 1
|
dludwig@8316
|
156 |
#define HAVE_SIN 1
|
dludwig@8316
|
157 |
#define HAVE_SINF 1
|
dludwig@8316
|
158 |
#define HAVE_SQRT 1
|
slouken@8840
|
159 |
#define HAVE_SQRTF 1
|
slouken@8840
|
160 |
#define HAVE_TAN 1
|
slouken@8840
|
161 |
#define HAVE_TANF 1
|
dludwig@8440
|
162 |
#define HAVE__FSEEKI64 1
|
dludwig@8316
|
163 |
|
dludwig@8316
|
164 |
/* Enable various audio drivers */
|
dludwig@8380
|
165 |
#define SDL_AUDIO_DRIVER_XAUDIO2 1
|
dludwig@8316
|
166 |
#define SDL_AUDIO_DRIVER_DISK 1
|
dludwig@8316
|
167 |
#define SDL_AUDIO_DRIVER_DUMMY 1
|
dludwig@8316
|
168 |
|
dludwig@8316
|
169 |
/* Enable various input drivers */
|
dludwig@8471
|
170 |
#if WINAPI_FAMILY == WINAPI_FAMILY_PHONE_APP
|
dludwig@8471
|
171 |
#define SDL_JOYSTICK_DISABLED 1
|
slouken@8972
|
172 |
#define SDL_HAPTIC_DISABLED 1
|
dludwig@8471
|
173 |
#else
|
dludwig@8471
|
174 |
#define SDL_JOYSTICK_XINPUT 1
|
slouken@8972
|
175 |
#define SDL_HAPTIC_XINPUT 1
|
dludwig@8471
|
176 |
#endif
|
dludwig@8316
|
177 |
|
dludwig@8316
|
178 |
/* Enable various shared object loading systems */
|
dludwig@8382
|
179 |
#define SDL_LOADSO_WINDOWS 1
|
dludwig@8316
|
180 |
|
dludwig@8316
|
181 |
/* Enable various threading systems */
|
dludwig@9930
|
182 |
#if (NTDDI_VERSION >= NTDDI_WINBLUE)
|
dludwig@9930
|
183 |
#define SDL_THREAD_WINDOWS 1
|
dludwig@9930
|
184 |
#else
|
dludwig@9930
|
185 |
/* WinRT on Windows 8.0 and Windows Phone 8.0 don't support CreateThread() */
|
dludwig@8356
|
186 |
#define SDL_THREAD_STDCPP 1
|
dludwig@9930
|
187 |
#endif
|
dludwig@8316
|
188 |
|
dludwig@8316
|
189 |
/* Enable various timer systems */
|
dludwig@8364
|
190 |
#define SDL_TIMER_WINDOWS 1
|
dludwig@8316
|
191 |
|
dludwig@8316
|
192 |
/* Enable various video drivers */
|
dludwig@8327
|
193 |
#define SDL_VIDEO_DRIVER_WINRT 1
|
dludwig@8327
|
194 |
#define SDL_VIDEO_DRIVER_DUMMY 1
|
dludwig@8316
|
195 |
|
slouken@8582
|
196 |
/* Enable OpenGL ES 2.0 (via a modified ANGLE library) */
|
slouken@8582
|
197 |
#define SDL_VIDEO_OPENGL_ES2 1
|
dludwig@8549
|
198 |
#define SDL_VIDEO_OPENGL_EGL 1
|
dludwig@8541
|
199 |
|
dludwig@8400
|
200 |
/* Enable appropriate renderer(s) */
|
dludwig@8400
|
201 |
#define SDL_VIDEO_RENDER_D3D11 1
|
dludwig@8316
|
202 |
|
dludwig@8546
|
203 |
#if SDL_VIDEO_OPENGL_ES2
|
dludwig@8546
|
204 |
#define SDL_VIDEO_RENDER_OGL_ES2 1
|
dludwig@8546
|
205 |
#endif
|
dludwig@8546
|
206 |
|
dludwig@8316
|
207 |
/* Enable system power support */
|
dludwig@8611
|
208 |
#define SDL_POWER_WINRT 1
|
dludwig@8316
|
209 |
|
dludwig@8316
|
210 |
/* Enable assembly routines (Win64 doesn't have inline asm) */
|
dludwig@8316
|
211 |
#ifndef _WIN64
|
dludwig@8316
|
212 |
#define SDL_ASSEMBLY_ROUTINES 1
|
dludwig@8316
|
213 |
#endif
|
dludwig@8316
|
214 |
|
slouken@10638
|
215 |
#endif /* SDL_config_winrt_h_ */
|