00001
00002
00003
00004
00005
00006
00007
00008
00009
00010 #ifndef ANET_COMMON
00011 #define ANET_COMMON
00012
00030 #ifndef __MACTYPES__
00031
00032 typedef unsigned char UInt8;
00033 typedef signed char SInt8;
00034 typedef unsigned short UInt16;
00035 typedef signed short SInt16;
00036 typedef unsigned long UInt32;
00037 typedef signed long SInt32;
00038
00039 #define __MACTYPES__
00040 #endif //__MACTYPES__
00041
00042 typedef char boolean;
00043
00044 #define FALSE 0
00045 #define TRUE 1
00046
00047 #endif