author | Sam Lantinga |
Fri, 24 Feb 2006 07:26:31 +0000 | |
changeset 1422 | d2ee8da60262 |
child 1423 | 4ed717f9e509 |
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@1422 | 28 |
#define SDL_HAS_64BIT_TYPE 1 |
slouken@1422 | 29 |
|
slouken@1422 | 30 |
/* Useful headers */ |
slouken@1422 | 31 |
#define HAVE_STDARG_H 1 |
slouken@1422 | 32 |
#define HAVE_STDDEF_H 1 |
slouken@1422 | 33 |
#define HAVE_INTTYPES_H 1 |
slouken@1422 | 34 |
|
slouken@1422 | 35 |
/* Enable various audio drivers */ |
slouken@1422 | 36 |
#define SDL_AUDIO_DRIVER_DISK 1 |
slouken@1422 | 37 |
#ifndef _WIN32_WCE |
slouken@1422 | 38 |
#define SDL_AUDIO_DRIVER_DSOUND 1 |
slouken@1422 | 39 |
#endif |
slouken@1422 | 40 |
#define SDL_AUDIO_DRIVER_WAVEOUT 1 |
slouken@1422 | 41 |
|
slouken@1422 | 42 |
/* Enable various cdrom drivers */ |
slouken@1422 | 43 |
#define SDL_CDROM_WIN32 1 |
slouken@1422 | 44 |
|
slouken@1422 | 45 |
/* Enable various input drivers */ |
slouken@1422 | 46 |
#define SDL_JOYSTICK_WINMM 1 |
slouken@1422 | 47 |
|
slouken@1422 | 48 |
/* Enable various shared object loading systems */ |
slouken@1422 | 49 |
#define SDL_LOADSO_WIN32 1 |
slouken@1422 | 50 |
|
slouken@1422 | 51 |
/* Enable various threading systems */ |
slouken@1422 | 52 |
#define SDL_THREAD_WIN32 1 |
slouken@1422 | 53 |
|
slouken@1422 | 54 |
/* Enable various timer systems */ |
slouken@1422 | 55 |
#ifdef _WIN32_WCE |
slouken@1422 | 56 |
#define SDL_TIMER_WINCE 1 |
slouken@1422 | 57 |
#else |
slouken@1422 | 58 |
#define SDL_TIMER_WIN32 1 |
slouken@1422 | 59 |
#endif |
slouken@1422 | 60 |
|
slouken@1422 | 61 |
/* Enable various video drivers */ |
slouken@1422 | 62 |
#ifndef _WIN32_WCE |
slouken@1422 | 63 |
#define SDL_VIDEO_DRIVER_DDRAW 1 |
slouken@1422 | 64 |
#endif |
slouken@1422 | 65 |
#define SDL_VIDEO_DRIVER_DUMMY 1 |
slouken@1422 | 66 |
#ifdef _WIN32_WCE |
slouken@1422 | 67 |
#define SDL_VIDEO_DRIVER_GAPI 1 |
slouken@1422 | 68 |
#endif |
slouken@1422 | 69 |
#define SDL_VIDEO_DRIVER_WINDIB 1 |
slouken@1422 | 70 |
|
slouken@1422 | 71 |
/* Enable OpenGL support */ |
slouken@1422 | 72 |
#define SDL_VIDEO_OPENGL 1 |
slouken@1422 | 73 |
#define SDL_VIDEO_OPENGL_WGL 1 |
slouken@1422 | 74 |
|
slouken@1422 | 75 |
/* Enable assembly routines */ |
slouken@1422 | 76 |
#define SDL_ASSEMBLY_ROUTINES 1 |
slouken@1422 | 77 |
|
slouken@1422 | 78 |
#endif /* _SDL_config_win32_h */ |