-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathMemSettingDLG.h
More file actions
41 lines (28 loc) · 916 Bytes
/
MemSettingDLG.h
File metadata and controls
41 lines (28 loc) · 916 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
#pragma once
// MemSettingDLG ダイアログ
class MemSettingDLG : public CDialog
{
DECLARE_DYNAMIC(MemSettingDLG)
public:
MemSettingDLG(ShmParam p_shmparam, CWnd* pParent = NULL); // 標準コンストラクタ
virtual ~MemSettingDLG();
virtual BOOL OnInitDialog();
ShmParam GetParameter();
// ダイアログ データ
enum { IDD = IDD_NETSETTING_DIALOG };
protected:
ShmParam shmparam;
BOOL binHexMode;
//BOOL dummy1;
//BOOL dummy2;
CButton* binHexCBox;
protected:
virtual void DoDataExchange(CDataExchange* pDX); // DDX/DDV サポート
virtual void OnOK();
DECLARE_MESSAGE_MAP()
public:
afx_msg void OnEnChangeEditRhost();
afx_msg void OnBnClickedRadioProxy();
afx_msg void OnBnClickedRadioThrow();
afx_msg void OnBnClickedCheckBinhexMode();
};