home *** CD-ROM | disk | FTP | other *** search
- #ifndef __TYPES
- #define __TYPES
- typedef unsigned char UBYTE;
- typedef signed char SBYTE;
- typedef unsigned short UWORD;
- typedef short SWORD;
- typedef unsigned int UDWORD;
- typedef int SDWORD;
- typedef void VOID;
- typedef SDWORD BOOL;
- enum boolean {FALSE,TRUE};
- typedef unsigned char ubyte;
- typedef unsigned char byte;
- typedef signed char sbyte;
- typedef unsigned short uword;
- typedef short sword;
- typedef unsigned int udword;
- typedef int sdword;
- typedef SDWORD bool;
- #endif
-