1 |
#ifndef _INTEGER |
1 |
#ifndef _INTEGER |
2 |
|
2 |
|
3 |
typedef int INT; |
3 |
typedef int INT; |
4 |
typedef unsigned int UINT; |
4 |
typedef unsigned int UINT; |
5 |
|
5 |
|
6 |
typedef char CHAR; |
6 |
typedef char CHAR; |
7 |
typedef unsigned char UCHAR; |
7 |
typedef unsigned char UCHAR; |
8 |
typedef unsigned char BYTE; |
8 |
typedef unsigned char BYTE; |
9 |
|
9 |
|
10 |
typedef short SHORT; |
10 |
typedef short SHORT; |
11 |
typedef unsigned short USHORT; |
11 |
typedef unsigned short USHORT; |
12 |
typedef unsigned short WORD; |
12 |
typedef unsigned short WORD; |
13 |
|
13 |
|
14 |
typedef long LONG; |
14 |
typedef long LONG; |
15 |
typedef unsigned long ULONG; |
15 |
typedef unsigned long ULONG; |
16 |
typedef unsigned long DWORD; |
16 |
typedef unsigned long DWORD; |
17 |
|
17 |
|
18 |
typedef unsigned char BOOL; |
18 |
typedef unsigned char BOOL; |
19 |
#define FALSE 0 |
19 |
#define FALSE 0 |
20 |
#define TRUE 1 |
20 |
#define TRUE 1 |
21 |
|
21 |
|
22 |
#define _INTEGER |
22 |
#define _INTEGER |
23 |
#endif |
23 |
#endif |