Create a branch for audio work
[reactos.git] / base / applications / network / telnet / src / tncon.h
1 #pragma once
2
3 #include "tparams.h"
4 #include "tnclip.h"
5 #include "ttelhndl.h"
6
7 enum {
8 SC_UP,
9 SC_DOWN,
10 SC_ESC,
11 SC_MOUSE
12 };
13
14 enum {
15 TNNOCON,
16 TNPROMPT,
17 TNSCROLLBACK,
18 TNSPAWN,
19 TNDONE
20 };
21
22 int telProcessConsole(NetParams *pParams, KeyTranslator &KeyTrans,
23 TConsole &Console, TNetwork &Network, TMouse &Mouse,
24 Tnclip &Clipboard, HANDLE hThread);
25 WORD scrollkeys ();
26
27 // Thomas Briggs 8/17/98
28 BOOL WINAPI ControlEventHandler(DWORD);
29
30 // Bryan Montgomery 10/14/98
31 void setTNetwork(TNetwork);