基于gh0st的远程控制器

实现了终端管理、进程管理、窗口管理、桌面管理、文件管理、语音管理、视频管理、服务管理、注册表管理等功能。
This commit is contained in:
yuanyuanxiang
2019-01-05 20:21:43 +08:00
parent 3a66916242
commit 27fcb6284e
136 changed files with 33399 additions and 0 deletions

View File

@@ -0,0 +1,42 @@
#pragma once
#include "afxcmn.h"
#include "IOCPServer.h"
// CSystemDlg <20>Ի<EFBFBD><D4BB><EFBFBD>
class CSystemDlg : public CDialog
{
DECLARE_DYNAMIC(CSystemDlg)
public:
CSystemDlg(CWnd* pParent = NULL, IOCPServer* IOCPServer = NULL, CONTEXT_OBJECT *ContextObject = NULL);
virtual ~CSystemDlg();
CONTEXT_OBJECT* m_ContextObject;
IOCPServer* m_iocpServer;
VOID CSystemDlg::GetProcessList(void);
VOID CSystemDlg::ShowProcessList(void);
void CSystemDlg::ShowWindowsList(void);
void CSystemDlg::GetWindowsList(void);
void CSystemDlg::OnReceiveComplete(void);
BOOL m_bHow;
// <20>Ի<EFBFBD><D4BB><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>
enum { IDD = IDD_DIALOG_SYSTEM };
protected:
virtual void DoDataExchange(CDataExchange* pDX); // DDX/DDV ֧<><D6A7>
DECLARE_MESSAGE_MAP()
public:
CListCtrl m_ControlList;
virtual BOOL OnInitDialog();
afx_msg void OnClose();
afx_msg void OnNMRClickListSystem(NMHDR *pNMHDR, LRESULT *pResult);
afx_msg void OnPlistKill();
afx_msg void OnPlistRefresh();
afx_msg void OnWlistRefresh();
afx_msg void OnWlistClose();
afx_msg void OnWlistHide();
afx_msg void OnWlistRecover();
afx_msg void OnWlistMax();
afx_msg void OnWlistMin();
};