106 | | // user defined types |
107 | | //typedef unsigned int uint; |
108 | | typedef unsigned char uint8; |
109 | | typedef unsigned short uint16; |
110 | | typedef unsigned int uint32; |
111 | | #ifdef WIN |
112 | | typedef __int64 uint64; |
113 | | #else |
114 | | typedef unsigned long long uint64; |
115 | | #endif |
116 | | |
117 | | typedef char int8; |
118 | | typedef short int16; |
119 | | typedef int int32; |
120 | | #ifdef WIN |
121 | | typedef __int64 int64; |
122 | | #else |
123 | | typedef long long int64; |
124 | | #endif |
125 | | |
126 | | |
127 | | typedef signed int sint; |
128 | | typedef signed char sint8; |
129 | | typedef signed short sint16; |
130 | | typedef signed int sint32; |
131 | | #ifdef WIN |
132 | | typedef __int64 sint64; |
133 | | #else |
134 | | typedef signed long long sint64; |
135 | | #endif |
| 107 | typedef unsigned int uint; |
| 108 | typedef uint8_t uint8; |
| 109 | typedef uint16_t uint16; |
| 110 | typedef uint32_t uint32; |
| 111 | typedef uint64_t uint64; |
| 112 | |
| 113 | typedef int8_t int8; |
| 114 | typedef int16_t int16; |
| 115 | typedef int32_t int32; |
| 116 | typedef int64_t int64; |
| 117 | |
| 118 | typedef signed int sint; |
| 119 | typedef int8_t sint8; |
| 120 | typedef int16_t sint16; |
| 121 | typedef int32_t sint32; |
| 122 | typedef int64_t sint64; |