Mercurial > sdl-ios-xcode
comparison include/SDL_config_win32.h @ 1423:4ed717f9e509
Updated for Visual Studio Express 2005
author | Sam Lantinga <slouken@libsdl.org> |
---|---|
date | Fri, 24 Feb 2006 08:17:28 +0000 |
parents | d2ee8da60262 |
children | 5f52867ba65c |
comparison
equal
deleted
inserted
replaced
1422:d2ee8da60262 | 1423:4ed717f9e509 |
---|---|
23 #ifndef _SDL_config_win32_h | 23 #ifndef _SDL_config_win32_h |
24 #define _SDL_config_win32_h | 24 #define _SDL_config_win32_h |
25 | 25 |
26 /* This is a set of defines to configure the SDL features */ | 26 /* This is a set of defines to configure the SDL features */ |
27 | 27 |
28 #ifdef _MSC_VER | |
29 typedef __int8 int8_t; | |
30 typedef unsigned __int8 uint8_t; | |
31 typedef __int16 int16_t; | |
32 typedef unsigned __int16 uint16_t; | |
33 typedef __int32 int32_t; | |
34 typedef unsigned __int32 uint32_t; | |
35 typedef __int64 int64_t; | |
36 typedef unsigned __int64 uint64_t; | |
37 #endif | |
28 #define SDL_HAS_64BIT_TYPE 1 | 38 #define SDL_HAS_64BIT_TYPE 1 |
29 | 39 |
30 /* Useful headers */ | 40 /* Useful headers */ |
31 #define HAVE_STDARG_H 1 | 41 #define HAVE_STDARG_H 1 |
32 #define HAVE_STDDEF_H 1 | 42 #define HAVE_STDDEF_H 1 |
33 #define HAVE_INTTYPES_H 1 | |
34 | 43 |
35 /* Enable various audio drivers */ | 44 /* Enable various audio drivers */ |
36 #define SDL_AUDIO_DRIVER_DISK 1 | |
37 #ifndef _WIN32_WCE | 45 #ifndef _WIN32_WCE |
38 #define SDL_AUDIO_DRIVER_DSOUND 1 | 46 #define SDL_AUDIO_DRIVER_DSOUND 1 |
39 #endif | 47 #endif |
40 #define SDL_AUDIO_DRIVER_WAVEOUT 1 | 48 #define SDL_AUDIO_DRIVER_WAVEOUT 1 |
41 | 49 |
60 | 68 |
61 /* Enable various video drivers */ | 69 /* Enable various video drivers */ |
62 #ifndef _WIN32_WCE | 70 #ifndef _WIN32_WCE |
63 #define SDL_VIDEO_DRIVER_DDRAW 1 | 71 #define SDL_VIDEO_DRIVER_DDRAW 1 |
64 #endif | 72 #endif |
65 #define SDL_VIDEO_DRIVER_DUMMY 1 | |
66 #ifdef _WIN32_WCE | 73 #ifdef _WIN32_WCE |
67 #define SDL_VIDEO_DRIVER_GAPI 1 | 74 #define SDL_VIDEO_DRIVER_GAPI 1 |
68 #endif | 75 #endif |
69 #define SDL_VIDEO_DRIVER_WINDIB 1 | 76 #define SDL_VIDEO_DRIVER_WINDIB 1 |
70 | 77 |