/**************************************************************************/ /* */ /* declare.h: declaration-symbols (uchar, ulong...;and the sizes of them) */ /* */ /**************************************************************************/ #ifndef __declare_h #define __declare_h #define UCHAR unsigned char #define CHAR char #define USHORT unsigned short #define SHORT short #define UWORD unsigned short #define WORD short #define ULONG unsigned long #define LONG long #define UINT unsigned #define INT int #define SIZE_CHAR 1 #define SIZE_SHORT 2 #define SIZE_LONG 4 #define SIZE_INT (sizeof(INT)) #endif