/* ----- file MISC.H ----- */ #ifndef _MISC_H_ #define _MISC_H_ /* ----- standard data types ----- */ #ifndef BYTE #define BYTE unsigned char #endif #ifndef WORD #define WORD unsigned int #endif #ifndef DWORD #define DWORD unsigned long #endif #ifndef BCD8 #define BCD8 unsigned char #endif #ifndef BCD16 #define BCD16 unsigned int #endif #ifndef NULL #define NULL 0 #endif #endif /****************************************************************************/ /* function to convert a BCD value to integer */ extern int BCD2INT( BCD16 BCDValue ); /****************************************************************************/ /* function to convert a BCD value to integer */ extern BCD16 INT2BCD( int INTValue ); /* ----- end MISC.H ----- */