]>
Commit | Line | Data |
---|---|---|
f6bcfd97 BP |
1 | /******************************************************/ |
2 | /* */ | |
3 | /* declare.h: declaration-symbols (UCHAR, ULONG, ...) */ | |
4 | /* */ | |
5 | /******************************************************/ | |
6 | ||
7 | #ifndef __declare_h | |
8 | #define __declare_h | |
9 | ||
10 | #if defined(__CYGWIN__) | |
11 | #include <Windows32/Base.h> | |
12 | #endif | |
13 | ||
14 | #if !defined(OS2_H_INCLUDED) && !defined(__CYGWIN__) | |
15 | #ifdef AMIGA | |
16 | ||
17 | #include <exec/types.h> | |
18 | ||
19 | #else /* AMIGA */ | |
20 | typedef unsigned short USHORT; | |
21 | typedef short SHORT ; | |
22 | typedef unsigned short UWORD ; | |
23 | typedef short WORD ; | |
24 | typedef unsigned long ULONG ; | |
25 | typedef long LONG ; | |
26 | #endif /* !AMIGA */ | |
27 | ||
28 | typedef unsigned char UCHAR ; | |
29 | typedef char CHAR ; | |
30 | typedef unsigned UINT ; | |
31 | typedef int INT ; | |
32 | #else | |
33 | typedef unsigned short UWORD ; | |
34 | #endif | |
35 | ||
36 | ||
37 | #endif /* __declare_h */ | |
38 |