18 #if (_MSC_VER >= 1600)
27 typedef signed char int8_t;
28 typedef signed short int16_t;
29 typedef signed int int32_t;
30 typedef unsigned char uint8_t;
31 typedef unsigned short uint16_t;
32 typedef unsigned int uint32_t;
34 typedef signed __int8 int8_t;
35 typedef signed __int16 int16_t;
36 typedef signed __int32 int32_t;
37 typedef unsigned __int8 uint8_t;
38 typedef unsigned __int16 uint16_t;
39 typedef unsigned __int32 uint32_t;
40 #endif // _MSC_VER < 1300
41 typedef signed __int64 int64_t;
42 typedef unsigned __int64 uint64_t;
44 #endif // _MSC_VER >= 1600
45 #endif // ifndef _MSC_VER