#ifndef _DRV_TYPES_H_ #define _DRV_TYPES_H_ #ifndef INT8 #define INT8 char #endif #ifndef UINT8 #define UINT8 unsigned char #endif #ifndef INT16 #define INT16 short #endif #ifndef UINT16 #define UINT16 unsigned short #endif #ifndef INT32 #define INT32 int #endif #ifndef UINT32 #define UINT32 unsigned int #endif #ifndef INT64 #define INT64 long long #endif #ifndef UINT64 #define UINT64 unsigned long long #endif #ifndef LONG #define LONG long #endif #ifndef ULONG #define ULONG unsigned long #endif #ifndef BOOL #define BOOL unsigned char #endif #ifndef ERROR #define ERROR (-1) #endif #ifndef TRUE #define TRUE 1 #endif #ifndef FALSE #define FALSE 0 #endif #ifndef ON #define ON 1 #endif #ifndef OFF #define OFF 0 #endif #ifndef HRESULT #define HRESULT int #endif #endif //_DRV_TYPES_H_