comparison include/SDL_config_win32.h @ 1662:782fd950bd46 SDL-1.3

Revamp of the video system in progress - adding support for multiple displays, multiple windows, and a full video mode selection API. WARNING: None of the video drivers have been updated for the new API yet! The API is still under design and very fluid. The code is now run through a consistent indent format: indent -i4 -nut -nsc -br -ce The headers are being converted to automatically generate doxygen documentation.
author Sam Lantinga <slouken@libsdl.org>
date Sun, 28 May 2006 13:04:16 +0000
parents 281d3f4870e5
children 2047ec9bb665
comparison
equal deleted inserted replaced
1661:281d3f4870e5 1662:782fd950bd46
26 #include "SDL_platform.h" 26 #include "SDL_platform.h"
27 27
28 /* This is a set of defines to configure the SDL features */ 28 /* This is a set of defines to configure the SDL features */
29 29
30 #ifdef _MSC_VER 30 #ifdef _MSC_VER
31 typedef signed __int8 int8_t; 31 typedef signed __int8 int8_t;
32 typedef unsigned __int8 uint8_t; 32 typedef unsigned __int8 uint8_t;
33 typedef signed __int16 int16_t; 33 typedef signed __int16 int16_t;
34 typedef unsigned __int16 uint16_t; 34 typedef unsigned __int16 uint16_t;
35 typedef signed __int32 int32_t; 35 typedef signed __int32 int32_t;
36 typedef unsigned __int32 uint32_t; 36 typedef unsigned __int32 uint32_t;
37 typedef signed __int64 int64_t; 37 typedef signed __int64 int64_t;
38 typedef unsigned __int64 uint64_t; 38 typedef unsigned __int64 uint64_t;
39 #ifndef _UINTPTR_T_DEFINED 39 #ifndef _UINTPTR_T_DEFINED
40 #ifdef _WIN64 40 #ifdef _WIN64
41 typedef unsigned __int64 uintptr_t; 41 typedef unsigned __int64 uintptr_t;
42 #else 42 #else
43 typedef unsigned int uintptr_t; 43 typedef unsigned int uintptr_t;
44 #endif 44 #endif
45 #define _UINTPTR_T_DEFINED 45 #define _UINTPTR_T_DEFINED
46 #endif 46 #endif
47 #else 47 #else
48 typedef signed char int8_t; 48 typedef signed char int8_t;