Go to the documentation of this file.
22 #ifndef FIFE_UTIL_FIFE_STDINT_H
23 #define FIFE_UTIL_FIFE_STDINT_H
28 #if defined( WIN32 ) && defined( _MSC_VER )
30 typedef signed __int8 int8_t;
31 typedef unsigned __int8
uint8_t;
32 typedef signed __int16 int16_t;
34 typedef signed __int32 int32_t;
36 typedef signed __int64 int64_t;
37 typedef unsigned __int64 uint64_t;
52 #if SDL_BYTEORDER == SDL_BIG_ENDIAN