nexmon – Blame information for rev 1
?pathlinks?
Rev | Author | Line No. | Line |
---|---|---|---|
1 | office | 1 | #ifndef TYPES_H |
2 | #define TYPES_H |
||
3 | |||
4 | typedef unsigned char byte; |
||
5 | typedef unsigned short word; |
||
6 | typedef unsigned int dword; |
||
7 | typedef unsigned char bool; |
||
8 | typedef signed char int8_t; |
||
9 | typedef unsigned char uint8_t; |
||
10 | typedef signed short int int16_t; |
||
11 | typedef unsigned short int uint16_t; |
||
12 | typedef signed int int32_t; |
||
13 | typedef unsigned int uint32_t; |
||
14 | typedef unsigned long long uint64_t; |
||
15 | typedef long long int64_t; |
||
16 | typedef int8_t int8; |
||
17 | typedef uint8_t uint8; |
||
18 | typedef int16_t int16; |
||
19 | typedef uint16_t uint16; |
||
20 | typedef int32_t int32; |
||
21 | typedef uint32_t uint32; |
||
22 | typedef int64_t int64; |
||
23 | typedef uint64_t uint64; |
||
24 | typedef unsigned char uchar_t; |
||
25 | typedef uint32_t wchar_t; |
||
26 | typedef uint32_t size_t; |
||
27 | typedef uint32_t addr_t; |
||
28 | typedef int32_t pid_t; |
||
29 | typedef uint32_t uint; |
||
30 | |||
31 | #endif |