/*
* ttypes.h
*
* Turbo Vision - Version 2.0
*
* Copyright (c) 1994 by Borland International
* All Rights Reserved.
*
* Modified by Sergio Sigala <ssigala@globalnet.it>
*/
#if !defined( __TTYPES_H )
#define __TTYPES_H
enum Boolean { False, True };
typedef unsigned short ushort;
typedef unsigned char uchar;
typedef unsigned int uint;
typedef unsigned long ulong;
const char EOS = '\0';
enum StreamableInit { streamableInit };
class ipstream;
class opstream;
class TStreamable;
class TStreamableTypes;
typedef int ccIndex;
typedef Boolean (*ccTestFunc)( void *, void * );
typedef void (*ccAppFunc)( void *, void * );
const int ccNotFound = -1;
extern const uchar specialChars[];
#endif // __TTYPES_H
Documentation generated by sergio@athena.milk.it on Wed Feb 10 22:11:47 CET 1999