tncon.h
上传用户:haiweijt
上传日期:2018-02-23
资源大小:8195k
文件大小:1k
源码类别:

Telnet服务器

开发平台:

Visual C++

  1. #ifndef __TNCON_H
  2. #define __TNCON_H
  3. #include "tparams.h"
  4. #include "tnclip.h"
  5. #include "ttelhndl.h"
  6. enum {
  7. SC_UP,
  8. SC_DOWN,
  9. SC_ESC,
  10. SC_MOUSE
  11. };
  12. enum {
  13. TNNOCON,
  14. TNPROMPT,
  15. TNSCROLLBACK,
  16. TNSPAWN,
  17. TNDONE
  18. };
  19. int telProcessConsole(NetParams *pParams, KeyTranslator &KeyTrans,
  20.   TConsole &Console, TNetwork &Network, TMouse &Mouse,
  21.   Tnclip &Clipboard, HANDLE hThread);
  22. WORD scrollkeys ();
  23. // Thomas Briggs 8/17/98
  24. BOOL WINAPI ControlEventHandler(DWORD);
  25. // Bryan Montgomery 10/14/98
  26. void setTNetwork(TNetwork);
  27. #endif