OLD | NEW |
| (Empty) |
1 // | |
2 // Posix integer types, defined in terms of native Windows types. | |
3 | |
4 #ifndef __INTTYPES_H_ | |
5 #define __INTTYPES_H_ | |
6 | |
7 typedef __int8 int8_t; | |
8 typedef __int16 int16_t; | |
9 typedef __int32 int32_t; | |
10 typedef __int64 int64_t; | |
11 typedef unsigned __int8 uint8_t; | |
12 typedef unsigned __int16 uint16_t; | |
13 typedef unsigned __int32 uint32_t; | |
14 typedef unsigned __int64 uint64_t; | |
15 typedef uint8_t u_int8_t; | |
16 typedef uint16_t u_int16_t; | |
17 typedef uint32_t u_int32_t; | |
18 typedef uint64_t u_int64_t; | |
19 | |
20 #endif // __INTTYPES_H_ | |
OLD | NEW |