comparison include/SDL_stdinc.h @ 3365:9cd5b35c0184

Made typedef for SDL_bool the same as the other typedefs. If this causes problems on any compiler, please report a bug to http://bugzilla.libsdl.org/ and include the platform and version of compiler you're using.
author Sam Lantinga <slouken@libsdl.org>
date Sat, 10 Oct 2009 09:22:20 +0000
parents 4ff84e8939c1
children d3baf5ac4e37
comparison
equal deleted inserted replaced
3364:70bfe3337f8a 3365:9cd5b35c0184
92 #define SDL_reinterpret_cast(type, expression) ((type)(expression)) 92 #define SDL_reinterpret_cast(type, expression) ((type)(expression))
93 #define SDL_static_cast(type, expression) ((type)(expression)) 93 #define SDL_static_cast(type, expression) ((type)(expression))
94 #endif 94 #endif
95 95
96 /* Basic data types */ 96 /* Basic data types */
97 typedef enum SDL_bool 97 typedef enum
98 { 98 {
99 SDL_FALSE = 0, 99 SDL_FALSE = 0,
100 SDL_TRUE = 1 100 SDL_TRUE = 1
101 } SDL_bool; 101 } SDL_bool;
102 102