Mercurial > sdl-ios-xcode
comparison include/SDL_types.h @ 173:83018110dce8
Added initial support for EPOC/Symbian OS (thanks Hannu!)
author | Sam Lantinga <slouken@libsdl.org> |
---|---|
date | Tue, 11 Sep 2001 20:38:49 +0000 |
parents | 39877400bd1e |
children | b8688cfdc232 |
comparison
equal
deleted
inserted
replaced
172:37e3ca9254c7 | 173:83018110dce8 |
---|---|
52 #elif defined(_MSC_VER) /* VC++ */ | 52 #elif defined(_MSC_VER) /* VC++ */ |
53 #define SDL_HAS_64BIT_TYPE __int64 | 53 #define SDL_HAS_64BIT_TYPE __int64 |
54 #endif | 54 #endif |
55 #endif /* !__STRICT_ANSI__ */ | 55 #endif /* !__STRICT_ANSI__ */ |
56 | 56 |
57 /* The 64-bit type isn't available on EPOC/Symbian OS */ | |
58 #ifdef __SYMBIAN32__ | |
59 #undef SDL_HAS_64BIT_TYPE | |
60 #endif | |
61 | |
57 /* The 64-bit datatype isn't supported on all platforms */ | 62 /* The 64-bit datatype isn't supported on all platforms */ |
58 #ifdef SDL_HAS_64BIT_TYPE | 63 #ifdef SDL_HAS_64BIT_TYPE |
59 typedef unsigned SDL_HAS_64BIT_TYPE Uint64; | 64 typedef unsigned SDL_HAS_64BIT_TYPE Uint64; |
60 typedef SDL_HAS_64BIT_TYPE Sint64; | 65 typedef SDL_HAS_64BIT_TYPE Sint64; |
61 #else | 66 #else |