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

远程控制编程

开发平台:

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. // BOWDoc.h : interface of the CBOWDoc class
  16. //
  17. /////////////////////////////////////////////////////////////////////////////
  18. #if !defined(AFX_BOWDOC_H__720D769F_A7E5_11D2_ADC4_0000F8084273__INCLUDED_)
  19. #define AFX_BOWDOC_H__720D769F_A7E5_11D2_ADC4_0000F8084273__INCLUDED_
  20. #if _MSC_VER > 1000
  21. #pragma once
  22. #endif // _MSC_VER > 1000
  23. class CBOServerDlg;
  24. class CBODialogBar;
  25. #pragma pack(push,1)
  26. typedef struct __serverinfo {
  27. // Permanent state
  28. char svName[64];
  29. char svConnectionType[64];
  30. char svAddress[512];
  31. char svEncryption[64];
  32. char svAuthentication[64];
  33. // Temporary state
  34. BOOL bOpened;
  35. CBOServerDlg *pServerDlg;
  36. CBODialogBar *pServerDlgBDB;
  37. struct __serverinfo *next;
  38. } SERVER_INFO;
  39. #pragma pack(pop)
  40. class CBOWDoc : public CDocument
  41. {
  42. protected: // create from serialization only
  43. CBOWDoc();
  44. DECLARE_DYNCREATE(CBOWDoc)
  45. // Attributes
  46. public:
  47. SERVER_INFO *m_pHeadSI;
  48. // Operations
  49. public:
  50. // Overrides
  51. // ClassWizard generated virtual function overrides
  52. //{{AFX_VIRTUAL(CBOWDoc)
  53. public:
  54. virtual void Serialize(CArchive& ar);
  55. virtual BOOL OnSaveDocument(LPCTSTR lpszPathName);
  56. virtual BOOL OnOpenDocument(LPCTSTR lpszPathName);
  57. virtual void DeleteContents();
  58. //}}AFX_VIRTUAL
  59. // Implementation
  60. public:
  61. virtual ~CBOWDoc();
  62. void *InsertServer(const char *svName,
  63.                    const char *svConnectionType,
  64.    const char *svAddress,
  65.    const char *svEncryption,
  66.    const char *svAuthentication);
  67. void EditServer(SERVER_INFO *si,
  68.             const char *svName,
  69.                 const char *svConnectionType,
  70. const char *svAddress,
  71. const char *svEncryption,
  72.     const char *svAuthentication);
  73. void DeleteServer(void *psi);
  74. #ifdef _DEBUG
  75. virtual void AssertValid() const;
  76. virtual void Dump(CDumpContext& dc) const;
  77. #endif
  78. protected:
  79. // Generated message map functions
  80. protected:
  81. //{{AFX_MSG(CBOWDoc)
  82. // NOTE - the ClassWizard will add and remove member functions here.
  83. //    DO NOT EDIT what you see in these blocks of generated code !
  84. //}}AFX_MSG
  85. DECLARE_MESSAGE_MAP()
  86. };
  87. /////////////////////////////////////////////////////////////////////////////
  88. //{{AFX_INSERT_LOCATION}}
  89. // Microsoft Visual C++ will insert additional declarations immediately before the previous line.
  90. #endif // !defined(AFX_BOWDOC_H__720D769F_A7E5_11D2_ADC4_0000F8084273__INCLUDED_)