comparison include/SDL_types.h @ 1190:173c063d4f55

OS/2 port! This was mostly, if not entirely, written by "Doodle" and "Caetano": doodle@scenergy.dfmk.hu daniel@caetano.eng.br --ryan.
author Ryan C. Gordon <icculus@icculus.org>
date Wed, 23 Nov 2005 07:29:56 +0000
parents bc0b95b02235
children c9b51268668f
comparison
equal deleted inserted replaced
1189:c96b326b90ba 1190:173c063d4f55
55 55
56 /* Figure out how to support 64-bit datatypes */ 56 /* Figure out how to support 64-bit datatypes */
57 #if !defined(__STRICT_ANSI__) 57 #if !defined(__STRICT_ANSI__)
58 #ifdef __osf__ /* Tru64 */ 58 #ifdef __osf__ /* Tru64 */
59 #define SDL_HAS_64BIT_TYPE long 59 #define SDL_HAS_64BIT_TYPE long
60 #elif defined(__GNUC__) || defined(__MWERKS__) || defined(__SUNPRO_C) || defined(__DECC) 60 #elif defined(__GNUC__) || defined(__MWERKS__) || defined(__SUNPRO_C) || defined(__DECC) || defined(__WATCOMC__)
61 #define SDL_HAS_64BIT_TYPE long long 61 #define SDL_HAS_64BIT_TYPE long long
62 #elif defined(_MSC_VER) /* VC++ */ 62 #elif defined(_MSC_VER) /* VC++ */
63 #define SDL_HAS_64BIT_TYPE __int64 63 #define SDL_HAS_64BIT_TYPE __int64
64 #endif 64 #endif
65 #endif /* !__STRICT_ANSI__ */ 65 #endif /* !__STRICT_ANSI__ */