author | Sam Lantinga |
Sat, 04 Mar 2006 08:24:35 +0000 | |
changeset 1465 | 8dfa9a6d69a5 |
parent 1428 | 5f52867ba65c |
child 1470 | d47d96962fcc |
permissions | -rw-r--r-- |
slouken@1422 | 1 |
/* |
slouken@1422 | 2 |
SDL - Simple DirectMedia Layer |
slouken@1422 | 3 |
Copyright (C) 1997-2006 Sam Lantinga |
slouken@1422 | 4 |
|
slouken@1422 | 5 |
This library is free software; you can redistribute it and/or |
slouken@1422 | 6 |
modify it under the terms of the GNU Lesser General Public |
slouken@1422 | 7 |
License as published by the Free Software Foundation; either |
slouken@1422 | 8 |
version 2.1 of the License, or (at your option) any later version. |
slouken@1422 | 9 |
|
slouken@1422 | 10 |
This library is distributed in the hope that it will be useful, |
slouken@1422 | 11 |
but WITHOUT ANY WARRANTY; without even the implied warranty of |
slouken@1422 | 12 |
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU |
slouken@1422 | 13 |
Lesser General Public License for more details. |
slouken@1422 | 14 |
|
slouken@1422 | 15 |
You should have received a copy of the GNU Lesser General Public |
slouken@1422 | 16 |
License along with this library; if not, write to the Free Software |
slouken@1422 | 17 |
Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA |
slouken@1422 | 18 |
|
slouken@1422 | 19 |
Sam Lantinga |
slouken@1422 | 20 |
slouken@libsdl.org |
slouken@1422 | 21 |
*/ |
slouken@1422 | 22 |
|
slouken@1422 | 23 |
#ifndef _SDL_config_win32_h |
slouken@1422 | 24 |
#define _SDL_config_win32_h |
slouken@1422 | 25 |
|
slouken@1422 | 26 |
/* This is a set of defines to configure the SDL features */ |
slouken@1422 | 27 |
|
slouken@1423 | 28 |
#ifdef _MSC_VER |
slouken@1465 | 29 |
typedef signed __int8 int8_t; |
slouken@1423 | 30 |
typedef unsigned __int8 uint8_t; |
slouken@1465 | 31 |
typedef signed __int16 int16_t; |
slouken@1423 | 32 |
typedef unsigned __int16 uint16_t; |
slouken@1465 | 33 |
typedef signed __int32 int32_t; |
slouken@1423 | 34 |
typedef unsigned __int32 uint32_t; |
slouken@1465 | 35 |
typedef signed __int64 int64_t; |
slouken@1423 | 36 |
typedef unsigned __int64 uint64_t; |
slouken@1465 | 37 |
#ifndef _UINTPTR_T_DEFINED |
slouken@1465 | 38 |
#ifdef _WIN64 |
slouken@1465 | 39 |
typedef unsigned __int64 uintptr_t; |
slouken@1465 | 40 |
#else |
slouken@1465 | 41 |
typedef unsigned int uintptr_t; |
slouken@1465 | 42 |
#endif |
slouken@1465 | 43 |
#define _UINTPTR_T_DEFINED |
slouken@1465 | 44 |
#endif |
slouken@1465 | 45 |
#else |
slouken@1465 | 46 |
typedef signed char int8_t; |
slouken@1465 | 47 |
typedef unsigned char uint8_t; |
slouken@1465 | 48 |
typedef signed short int16_t; |
slouken@1465 | 49 |
typedef unsigned short uint16_t; |
slouken@1465 | 50 |
typedef signed int int32_t; |
slouken@1465 | 51 |
typedef unsigned int uint32_t; |
slouken@1465 | 52 |
typedef signed long long int64_t; |
slouken@1465 | 53 |
typedef unsigned long long uint64_t; |
slouken@1465 | 54 |
typedef unsigned int size_t; |
slouken@1428 | 55 |
typedef unsigned long uintptr_t; |
slouken@1465 | 56 |
#endif /* _MSC_VER */ |
slouken@1422 | 57 |
#define SDL_HAS_64BIT_TYPE 1 |
slouken@1422 | 58 |
|
slouken@1422 | 59 |
/* Useful headers */ |
slouken@1422 | 60 |
#define HAVE_STDARG_H 1 |
slouken@1422 | 61 |
#define HAVE_STDDEF_H 1 |
slouken@1422 | 62 |
|
slouken@1422 | 63 |
/* Enable various audio drivers */ |
slouken@1422 | 64 |
#ifndef _WIN32_WCE |
slouken@1422 | 65 |
#define SDL_AUDIO_DRIVER_DSOUND 1 |
slouken@1422 | 66 |
#endif |
slouken@1422 | 67 |
#define SDL_AUDIO_DRIVER_WAVEOUT 1 |
slouken@1422 | 68 |
|
slouken@1422 | 69 |
/* Enable various cdrom drivers */ |
slouken@1422 | 70 |
#define SDL_CDROM_WIN32 1 |
slouken@1422 | 71 |
|
slouken@1422 | 72 |
/* Enable various input drivers */ |
slouken@1422 | 73 |
#define SDL_JOYSTICK_WINMM 1 |
slouken@1422 | 74 |
|
slouken@1422 | 75 |
/* Enable various shared object loading systems */ |
slouken@1422 | 76 |
#define SDL_LOADSO_WIN32 1 |
slouken@1422 | 77 |
|
slouken@1422 | 78 |
/* Enable various threading systems */ |
slouken@1422 | 79 |
#define SDL_THREAD_WIN32 1 |
slouken@1422 | 80 |
|
slouken@1422 | 81 |
/* Enable various timer systems */ |
slouken@1422 | 82 |
#ifdef _WIN32_WCE |
slouken@1422 | 83 |
#define SDL_TIMER_WINCE 1 |
slouken@1422 | 84 |
#else |
slouken@1422 | 85 |
#define SDL_TIMER_WIN32 1 |
slouken@1422 | 86 |
#endif |
slouken@1422 | 87 |
|
slouken@1422 | 88 |
/* Enable various video drivers */ |
slouken@1422 | 89 |
#ifndef _WIN32_WCE |
slouken@1422 | 90 |
#define SDL_VIDEO_DRIVER_DDRAW 1 |
slouken@1422 | 91 |
#endif |
slouken@1422 | 92 |
#ifdef _WIN32_WCE |
slouken@1422 | 93 |
#define SDL_VIDEO_DRIVER_GAPI 1 |
slouken@1422 | 94 |
#endif |
slouken@1422 | 95 |
#define SDL_VIDEO_DRIVER_WINDIB 1 |
slouken@1422 | 96 |
|
slouken@1422 | 97 |
/* Enable OpenGL support */ |
slouken@1465 | 98 |
#ifndef _WIN32_WCE |
slouken@1422 | 99 |
#define SDL_VIDEO_OPENGL 1 |
slouken@1422 | 100 |
#define SDL_VIDEO_OPENGL_WGL 1 |
slouken@1465 | 101 |
#endif |
slouken@1422 | 102 |
|
slouken@1422 | 103 |
/* Enable assembly routines */ |
slouken@1422 | 104 |
#define SDL_ASSEMBLY_ROUTINES 1 |
slouken@1422 | 105 |
|
slouken@1422 | 106 |
#endif /* _SDL_config_win32_h */ |