forked from Noice2k/NsisDecompiler
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathNsisDecompilerDlg.h
57 lines (43 loc) · 1.11 KB
/
NsisDecompilerDlg.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
52
53
54
55
56
57
// NsisDecompilerDlg.h : header file
//
#pragma once
#include "NsisFile.h"
#include "afxcmn.h"
#include "NSISEmulator.h"
// CNsisDecompilerDlg dialog
class CNsisDecompilerDlg : public CDialogEx
{
// Construction
public:
CNsisDecompilerDlg(CWnd* pParent = NULL); // standard constructor
// Dialog Data
enum { IDD = IDD_NSISDECOMPILER_DIALOG };
protected:
virtual void DoDataExchange(CDataExchange* pDX); // DDX/DDV support
// Implementation
protected:
HICON m_hIcon;
// Generated message map functions
virtual BOOL OnInitDialog();
afx_msg void OnPaint();
afx_msg HCURSOR OnQueryDragIcon();
DECLARE_MESSAGE_MAP()
public:
afx_msg void OnBnClickedButton1();
// file processor
CNsisFile _nsisFile;
CNSISEmulator _nsisEmulator;
afx_msg void OnBnClickedOk();
afx_msg void OnBnClickedCancel();
CListCtrl m_SourceCode;
CListCtrl m_Stack;
CListCtrl m_Variables;
CListCtrl m_CallSteck;
CImageList m_ImageList;
void ShowVariables();
void ShowStack();
void ShowCallStack();
int m_lastitem;
afx_msg void OnBnClickedButton2();
virtual LRESULT DefWindowProc(UINT message, WPARAM wParam, LPARAM lParam);
};