Files
SimpleRemoter/server/2015Remote/sys/CInjectCodeDlg.h

37 lines
672 B
C
Raw Normal View History

#pragma once
2025-06-08 15:38:41 +08:00
// CInjectCodeDlg 对话框
2025-06-08 15:38:41 +08:00
class CInjectCodeDlg : public CDialog
{
DECLARE_DYNAMIC(CInjectCodeDlg)
2025-06-08 15:38:41 +08:00
public:
CInjectCodeDlg(CWnd* pParent = nullptr);
virtual ~CInjectCodeDlg();
2025-06-08 15:38:41 +08:00
CComboBox m_combo_main;
int isel;
CString Str_loacal;
CString Str_remote;
2025-06-08 15:38:41 +08:00
// 对话框数据
2025-06-08 15:38:41 +08:00
#ifdef AFX_DESIGN_TIME
enum {
IDD = IDD_INJECTINFO
};
2025-06-08 15:38:41 +08:00
#endif
protected:
virtual void DoDataExchange(CDataExchange* pDX);
2025-06-08 15:38:41 +08:00
DECLARE_MESSAGE_MAP()
2025-06-08 15:38:41 +08:00
public:
virtual BOOL OnInitDialog();
2025-06-08 15:38:41 +08:00
afx_msg void OnBnClickedButtonChoose();
afx_msg void OnBnClickedButtonInject();
afx_msg void OnCbnSelchangeComboInjects();
2025-06-08 15:38:41 +08:00
};