1 #ifndef _TELNET_PCH_
2 #define _TELNET_PCH_
3 
4 #include <stdarg.h>
5 
6 #define WIN32_NO_STATUS
7 
8 #include <windef.h>
9 #include <winbase.h>
10 #include <winuser.h>
11 #include <wincon.h>
12 #define _INC_WINDOWS
13 #include <winsock.h>
14 
15 #if defined(__BORLANDC__) && (__BORLANDC < 0x0500)
16 #include <mem.h>
17 #endif
18 
19 #ifdef __BORLANDC__
20 #include <fstream.h>
21 #else
22 #include <fstream>
23 #endif
24 
25 #include "src/tnconfig.h"
26 #include "src/tnmsg.h"
27 #include "src/tparser.h"
28 #include "src/ansiprsr.h"
29 #include "src/tmapldr.h"
30 #include "src/tnclass.h"
31 #include "src/tnmisc.h"
32 #include "src/tncon.h"
33 
34 #endif /* _TELNET_PCH_ */
35