诸暨麻将添加redis
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

28 rivejä
629 B

  1. #ifndef WH_COMMAND_LINE_HEAD_FILE
  2. #define WH_COMMAND_LINE_HEAD_FILE
  3. #pragma once
  4. #include "ServiceCoreHead.h"
  5. //////////////////////////////////////////////////////////////////////////////////
  6. //命令解释
  7. class SERVICE_CORE_CLASS CWHCommandLine
  8. {
  9. //函数定义
  10. public:
  11. //构造函数
  12. CWHCommandLine();
  13. //析构函数
  14. virtual ~CWHCommandLine();
  15. //功能函数
  16. public:
  17. //查询命令
  18. bool SearchCommandItem(LPCTSTR pszCommandLine, LPCTSTR pszCommand, TCHAR szParameter[], WORD wParameterLen);
  19. };
  20. //////////////////////////////////////////////////////////////////////////////////
  21. #endif