00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012 #if !defined( __TTYPES_H )
00013 #define __TTYPES_H
00014
00030 enum Boolean { False, True };
00031
00035 typedef unsigned short ushort;
00036
00040 typedef unsigned char uchar;
00041
00045 typedef unsigned int uint;
00046
00050 typedef unsigned long ulong;
00051
00055 const char EOS = '\0';
00056
00062 enum StreamableInit { streamableInit };
00063
00064 class ipstream;
00065 class opstream;
00066 class TStreamable;
00067 class TStreamableTypes;
00068
00072 typedef int ccIndex;
00073
00078 typedef Boolean (*ccTestFunc)( void *item, void *arg );
00079
00084 typedef void (*ccAppFunc)( void *item, void *arg );
00085
00090 const int ccNotFound = -1;
00091
00098 extern const uchar specialChars[];
00099
00100 #endif // __TTYPES_H