373e06f5c44751303d0bb4317e34c1be8aa31fce
[reactos.git] / reactos / base / applications / network / telnet / src / precomp.h
1 #include "ansiprsr.h"
2
3 #if defined(__BORLANDC__) && (__BORLANDC < 0x0500)
4 #include <mem.h>
5 #else
6 #include <memory.h>
7 #endif
8
9 #ifdef __BORLANDC__
10 #include <fstream.h>
11 #else
12 #include <string>
13 #include <fstream>
14 #endif
15
16 #include <windows.h>
17 #include <stdlib.h>
18 #include <stdio.h>
19 #include <stdarg.h>
20 #include <string.h>
21 #include <locale.h>
22 #include <io.h>
23 #include <time.h>
24 #include <ctype.h>
25 #include <sys/types.h>
26 #include <sys/stat.h>
27
28 #include "keytrans.h"
29 #include "tnerror.h"
30 #include "tcharmap.h"
31 #include "tnconfig.h"
32 #include "tconsole.h"
33 #include "tkeydef.h"
34 #include "tkeymap.h"
35 #include "tmapldr.h"
36 #include "tmouse.h"
37 #include "tnclass.h"
38 #include "tnmisc.h"
39 #include "tnclip.h"
40 #include "tncon.h"
41 #include "ttelhndl.h"
42 #include "tnetwork.h"
43 #include "tnmain.h"
44 #include "tscript.h"
45 #include "tscroll.h"
46 #include "telnet.h"
47 #include "tparams.h"