forked from upupupY/Sheller
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathMasterWindows.h
45 lines (36 loc) · 932 Bytes
/
MasterWindows.h
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
42
43
44
45
#pragma once
#include "stdafx.h"
#include "resource.h"
#include "afxwin.h"
// MasterWindows 对话框
class MasterWindows : public CDialogEx
{
DECLARE_DYNAMIC(MasterWindows)
public:
MasterWindows(CWnd* pParent = NULL); // 标准构造函数
virtual ~MasterWindows();
// 对话框数据
enum { IDD = IDD_DIALOG1 };
protected:
virtual void DoDataExchange(CDataExchange* pDX); // DDX/DDV 支持
DECLARE_MESSAGE_MAP()
public:
virtual BOOL OnInitDialog();
CStatic m_MasterStaticText;
afx_msg void OnBnClickedButton1();
afx_msg void OnDropFiles(HDROP hDropInfo);
CString m_MasterStaticTextStr;
public:
afx_msg void OnBnClickedButton4();
// afx_msg void OnBnClickedButton3();
afx_msg void OnBnClickedButton9();
/*自定义数据*/
private:
// 显示PE数据
void ShowPEInfoData(const CString & FileName);
// 区段添加内部调用函数
BOOL NewSection();
public:
afx_msg void OnBnClickedButton3();
afx_msg void OnBnClickedButton2();
};