-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathUpdateManagerDlg.h
More file actions
52 lines (34 loc) · 1.14 KB
/
Copy pathUpdateManagerDlg.h
File metadata and controls
52 lines (34 loc) · 1.14 KB
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
52
#pragma once
#include <Mshtml.h>
#include "XUpdateManager.h"
// CUpdateManagerDlg dialog
class CUpdateManagerDlg : public CDialog
{
public:
CUpdateManagerDlg(CWnd* pParent = NULL);
protected:
virtual BOOL OnInitDialog( void );
virtual void DoDataExchange(CDataExchange* pDX);
HRESULT OnButtonOK(IHTMLElement *pElement);
HRESULT OnButtonCancel(IHTMLElement *pElement);
void PrepareForMakePatch( void );
protected:
bool m_bUpdateAppInfo;
HICON m_hIcon;
protected:
afx_msg void OnSysCommand(UINT nID, LPARAM lParam);
afx_msg void OnPaint( void );
afx_msg HCURSOR OnQueryDragIcon( void );
DECLARE_MESSAGE_MAP()
public:
afx_msg void OnBnClickedButtonSelectPatchSource( void );
afx_msg void OnBnClickedButtonEncode( void );
afx_msg void OnBnClickedButtonDecode( void );
afx_msg void OnBnClickedButtonClear( void );
afx_msg void OnBnClickedVersionUp( void );
afx_msg void OnBnClickedVersionDown( void );
afx_msg void OnBnClickedCancel( void );
afx_msg void OnEnUpdateAppName( void );
afx_msg void OnEnUpdateVersion( void );
afx_msg void OnDropFiles( HDROP hDropInfo );
};