BOServerDlg.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. #if !defined(AFX_BOSERVERDLG_H__382F75C2_A9A8_11D2_ADC4_0000F8084273__INCLUDED_)
  16. #define AFX_BOSERVERDLG_H__382F75C2_A9A8_11D2_ADC4_0000F8084273__INCLUDED_
  17. #if _MSC_VER > 1000
  18. #pragma once
  19. #endif // _MSC_VER > 1000
  20. // BOServerDlg.h : header file
  21. //
  22. #include"BOCmdDescList.h"
  23. #include"GradientDialog.h"
  24. #include"BOWDoc.h"
  25. #include"HistoryEdit.h"
  26. #include"auth.h"
  27. /////////////////////////////////////////////////////////////////////////////
  28. // CBOServerDlg dialog
  29. class CBOServerDlg : public CGradientDialog
  30. {
  31. // Construction
  32. public:
  33. CBOServerDlg(CWnd* pParent = NULL);   // standard constructor
  34. ~CBOServerDlg();
  35. void UseGradient(BOOL bGrad);
  36. void SetServerInfo(SERVER_INFO *si);
  37. void UpdateDialog(void);
  38. void HandleNetworkPoll(void);
  39. void HandleCommandResponse(char *svArg2);
  40. int PerformQuery();
  41. friend UINT ServerListenThread(LPVOID pParam);
  42. // Dialog Data
  43. //{{AFX_DATA(CBOServerDlg)
  44. enum { IDD = IDD_BOSERVERDLG };
  45. // NOTE: the ClassWizard will add data members here
  46. //}}AFX_DATA
  47. BOOL m_bHandleNetwork;
  48. BOOL m_bIsConnected;
  49. CHistoryEdit m_HistEdit;
  50. CFont m_HistFont;
  51. // Overrides
  52. // ClassWizard generated virtual function overrides
  53. //{{AFX_VIRTUAL(CBOServerDlg)
  54. public:
  55. virtual BOOL DestroyWindow();
  56. protected:
  57. virtual void DoDataExchange(CDataExchange* pDX);    // DDX/DDV support
  58. virtual void OnOK();
  59. virtual void OnCancel();
  60. //}}AFX_VIRTUAL
  61. // Implementation
  62. protected:
  63. COLORREF m_c1,m_c2;
  64. BOOL m_bGrad,m_bGenerated;
  65. CBitmap m_bmConnect;
  66. CImageList m_TreeImageList;
  67. CBOCmdDescList m_CmdDescList;
  68. SERVER_INFO m_ServerInfo;
  69. CAuthSocket *m_pAuthSocket;
  70. CWinThread *m_cwtListenThread;
  71. CRITICAL_SECTION m_NetCritSec;
  72. // Generated message map functions
  73. //{{AFX_MSG(CBOServerDlg)
  74. afx_msg void OnAllowDocking();
  75. virtual BOOL OnInitDialog();
  76. afx_msg void OnConnectcheck();
  77. afx_msg void OnSelchangedServercommands(NMHDR* pNMHDR, LRESULT* pResult);
  78. afx_msg void OnSendcommand();
  79. afx_msg void OnClearResponses();
  80. afx_msg void OnSize(UINT nType, int cx, int cy);
  81. afx_msg void OnSettings();
  82. //}}AFX_MSG
  83. DECLARE_MESSAGE_MAP()
  84. };
  85. //{{AFX_INSERT_LOCATION}}
  86. // Microsoft Visual C++ will insert additional declarations immediately before the previous line.
  87. #endif // !defined(AFX_BOSERVERDLG_H__382F75C2_A9A8_11D2_ADC4_0000F8084273__INCLUDED_)