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

Telnet服务器

开发平台:

Visual C++

  1. #ifndef __TNMAIN_H
  2. #define __TNMAIN_H
  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. struct cmdHistory {
  12. char cmd[80];
  13. struct cmdHistory *next;
  14. struct cmdHistory *prev;
  15. };
  16. #endif