00001 /* 00002 Free Download Manager Copyright (c) 2003-2007 FreeDownloadManager.ORG 00003 */ 00004 00005 #ifndef __COMMON_TYPES_H 00006 #define __COMMON_TYPES_H 00007 00008 typedef unsigned char Byte; 00009 typedef short Int16; 00010 typedef unsigned short UInt16; 00011 typedef int Int32; 00012 typedef unsigned int UInt32; 00013 #ifdef _MSC_VER 00014 typedef __int64 Int64; 00015 typedef unsigned __int64 UInt64; 00016 #else 00017 typedef long long int Int64; 00018 typedef unsigned long long int UInt64; 00019 #endif 00020 00021 #endif
1.5.6