Import my Hybrid-CD stuff from last year.
[reactos.git] / reactos / base / applications / network / telnet / src / tnmain.h
1 #pragma once
2
3 #include <stdlib.h>
4 #include <process.h>
5 #include "tncon.h"
6 #include "tnclass.h"
7 #include "ttelhndl.h"
8 #include "tnerror.h"
9 // Paul Brannan 5/25/98
10 #include "tnconfig.h"
11
12 struct cmdHistory {
13 char cmd[80];
14 struct cmdHistory *next;
15 struct cmdHistory *prev;
16 };