Go to the documentation of this file. 17 #ifndef __LIBICUID_TYPES_H__ 18 #define __LIBICUID_TYPES_H__ 29 typedef signed char int8_t;
30 typedef signed short int16_t;
31 typedef signed int int32_t;
32 typedef unsigned char uint8_t;
33 typedef unsigned short uint16_t;
34 typedef unsigned int uint32_t;
36 typedef signed __int8 int8_t;
37 typedef signed __int16 int16_t;
38 typedef signed __int32 int32_t;
39 typedef unsigned __int8 uint8_t;
40 typedef unsigned __int16 uint16_t;
41 typedef unsigned __int32 uint32_t;
43 typedef signed __int64 int64_t;
44 typedef unsigned __int64 uint64_t;