00001
00002 #ifndef __COMMON_H
00003 #define __COMMON_H
00004
00005 #ifndef _WIN32
00006 typedef unsigned int DWORD;
00007 typedef unsigned short int WORD;
00008 typedef unsigned char BYTE;
00009 typedef unsigned int UINT32;
00010
00011 # pragma pack (1)
00012
00013 # ifndef FILETIME_DEFINED
00014 # define FILETIME_DEFINED
00015
00016 typedef struct {
00017 unsigned int dwLowDateTime;
00018 unsigned int dwHighDateTime;
00019 } FILETIME;
00020 # endif // FILETIME_DEFINED
00021 #endif // _WIN32
00022 #endif // __COMMON_H