Initial import of Scalos. To decrease size I have
[AROS-Contrib.git] / scalos / libraries / popupmenu / pmtypes.h
blob3335e4b34d4efb27d12e4cbaa45f2d451b7a77d6
1 //
2 // pmtypes.h
3 //
4 // OS independent exec/types.h equivalent
5 //
6 // $Date$
7 // $Revision$
8 //
10 #ifndef PM_TYPES_H
11 #define PM_TYPES_H
13 #define AMIGA 1
15 #ifdef AMIGA
17 #include <exec/types.h>
19 #else
21 typedef unsigned long ULONG;
22 typedef long LONG;
24 typedef unsigned short UWORD;
25 typedef short WORD;
27 typedef unsigned char UBYTE;
28 typedef char BYTE;
30 typedef char BOOL;
32 typedef char * STRPTR;
34 #define TRUE 1
35 #define FALSE 0
37 #endif
39 #endif /* PM_TYPES_H */