comparison include/SDL_config_win32.h @ 2087:b10089473699

Merged r2956:2957 from branches/SDL-1.2: Digital Mars stdint.h usage. Fixes Bugzilla #376.
author Ryan C. Gordon <icculus@icculus.org>
date Mon, 12 Feb 2007 11:46:08 +0000
parents dbfa1ebd73b0
children 46648dc418ec
comparison
equal deleted inserted replaced
2086:fffea8d6bf92 2087:b10089473699
25 25
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 __GNUC__ 30 #if defined(__GNUC__) || defined(__DMC__)
31 #define HAVE_STDINT_H 1 31 #define HAVE_STDINT_H 1
32 #elif defined(_MSC_VER) 32 #elif defined(_MSC_VER)
33 typedef signed __int8 int8_t; 33 typedef signed __int8 int8_t;
34 typedef unsigned __int8 uint8_t; 34 typedef unsigned __int8 uint8_t;
35 typedef signed __int16 int16_t; 35 typedef signed __int16 int16_t;