#ifndef	TYPES_H
#define TYPES_H

typedef          char BYTE;
typedef unsigned char UBYTE;
typedef          short WORD;
typedef unsigned short UWORD;
typedef          short SHORT;
typedef unsigned short USHORT;
typedef          long LONG;
typedef unsigned long ULONG;
typedef void          *APTR;
typedef unsigned short RPTR;
typedef unsigned int BOOL;

#endif /* TYPES_H */