2019-01-05 20:21:43 +08:00
|
|
|
|
#pragma once
|
|
|
|
|
|
|
2025-01-01 04:54:27 +08:00
|
|
|
|
#include "Buffer.h"
|
|
|
|
|
|
|
2025-05-03 17:23:01 +08:00
|
|
|
|
LPBYTE ReadResource(int resourceId, DWORD& dwSize);
|
2019-01-05 20:21:43 +08:00
|
|
|
|
|
|
|
|
|
|
// CBuildDlg <20>Ի<EFBFBD><D4BB><EFBFBD>
|
|
|
|
|
|
|
|
|
|
|
|
class CBuildDlg : public CDialog
|
|
|
|
|
|
{
|
|
|
|
|
|
DECLARE_DYNAMIC(CBuildDlg)
|
|
|
|
|
|
|
|
|
|
|
|
public:
|
|
|
|
|
|
CBuildDlg(CWnd* pParent = NULL); // <20><><EFBFBD><D7BC><EFBFBD>캯<EFBFBD><ECBAAF>
|
|
|
|
|
|
virtual ~CBuildDlg();
|
|
|
|
|
|
|
|
|
|
|
|
// <20>Ի<EFBFBD><D4BB><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>
|
|
|
|
|
|
enum { IDD = IDD_DIALOG_BUILD };
|
|
|
|
|
|
|
|
|
|
|
|
protected:
|
|
|
|
|
|
virtual void DoDataExchange(CDataExchange* pDX); // DDX/DDV ֧<><D6A7>
|
|
|
|
|
|
|
|
|
|
|
|
DECLARE_MESSAGE_MAP()
|
|
|
|
|
|
public:
|
|
|
|
|
|
CString m_strIP;
|
|
|
|
|
|
CString m_strPort;
|
|
|
|
|
|
afx_msg void OnBnClickedOk();
|
2024-12-28 18:35:34 +08:00
|
|
|
|
virtual BOOL OnInitDialog();
|
|
|
|
|
|
CComboBox m_ComboExe;
|
2025-04-28 16:08:16 +08:00
|
|
|
|
|
2025-04-07 18:18:36 +08:00
|
|
|
|
afx_msg void OnCbnSelchangeComboExe();
|
|
|
|
|
|
CStatic m_OtherItem;
|
2025-04-28 16:08:16 +08:00
|
|
|
|
CComboBox m_ComboBits;
|
2025-06-15 04:55:14 +08:00
|
|
|
|
CComboBox m_ComboRunType;
|
2025-07-03 04:30:25 +08:00
|
|
|
|
CComboBox m_ComboProto;
|
2025-07-13 03:55:33 +08:00
|
|
|
|
CComboBox m_ComboEncrypt;
|
|
|
|
|
|
afx_msg void OnHelpParameters();
|
2025-08-10 03:04:13 +08:00
|
|
|
|
CComboBox m_ComboCompress;
|
2019-01-05 20:21:43 +08:00
|
|
|
|
};
|