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

Telnet服务器

开发平台:

Visual C++

  1. #pragma once
  2. #include <windows.h>
  3. class TConfigA
  4. {
  5. public:
  6. TConfigA(void);
  7. ~TConfigA(void);
  8. BOOL Open(const char* FileName);
  9. BOOL Open();
  10. void Close();
  11. static char* GetConfigFileName(char* Path, int Size);
  12. void ReadSystemString(LPCTSTR Key, char* Value, int Size);
  13. void ReadCmd(int index, char* value, int size);
  14. void ReadField(int index, char* value, int size);
  15. void ReadCount(char* value,int size);
  16. public:
  17. char m_FileName[256];
  18. };