Make acpi compile with Visual C++
[reactos.git] / base / applications / network / telnet / src / tnmain.h
1 #ifndef __TNMAIN_H
2 #define __TNMAIN_H
3
4 #include <stdlib.h>
5 #include <process.h>
6 #include "tncon.h"
7 #include "tnclass.h"
8 #include "ttelhndl.h"
9 #include "tnerror.h"
10 // Paul Brannan 5/25/98
11 #include "tnconfig.h"
12
13 struct cmdHistory {
14 char cmd[80];
15 struct cmdHistory *next;
16 struct cmdHistory *prev;
17 };
18
19 #endif