-
Notifications
You must be signed in to change notification settings - Fork 0
/
ReleaseToolDlg.h
51 lines (39 loc) · 1.04 KB
/
ReleaseToolDlg.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
46
47
48
49
50
51
// ReleaseToolDlg.h : 头文件
//
#pragma once
#include "afxwin.h"
#include "CDirectory.h"
// CReleaseToolDlg 对话框
class CReleaseToolDlg : public CDialog
{
// 构造
public:
CReleaseToolDlg(CWnd* pParent = NULL); // 标准构造函数
CString m_ReleaseVerFilePath ;
CString m_CheckVerPath;
CString m_ReleaseSourcePath;
DWORD m_dwVerNum ;
CDirectory m_CDTDir;
// 对话框数据
enum { IDD = IDD_RELEASETOOL_DIALOG };
protected:
virtual void DoDataExchange(CDataExchange* pDX); // DDX/DDV 支持
// 实现
protected:
HICON m_hIcon;
// 生成的消息映射函数
virtual BOOL OnInitDialog();
afx_msg void OnPaint();
afx_msg HCURSOR OnQueryDragIcon();
DECLARE_MESSAGE_MAP()
public:
afx_msg void OnBnClickedBtnPrvCheck();
afx_msg void OnBnClickedBtnSet();
afx_msg void OnBnClickedBtnStart();
afx_msg void OnBnClickedBtnCheck();
afx_msg void OnBnClickedBtnSave();
afx_msg void OnBnClickedBtnExit();
afx_msg void OnBnClickedBtnOpenfile();
afx_msg void OnEnSetfocusEditOpenfile();
CEdit m_EditStutas;
};