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