-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathTAB2.h
44 lines (39 loc) · 1.12 KB
/
TAB2.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
#pragma once
#include "resource.h"
#include "afxcmn.h"
#include "SearchDlg.h"
// CTAB2 對話方塊
class CTAB2 : public CDialog
{
DECLARE_EASYSIZE
DECLARE_DYNAMIC(CTAB2)
public:
CTAB2(CWnd* pParent = NULL); // 標準建構函式
virtual ~CTAB2();
// 對話方塊資料
#ifdef AFX_DESIGN_TIME
enum { IDD = IDD_TAB2 };
#endif
protected:
virtual void DoDataExchange(CDataExchange* pDX); // DDX/DDV 支援
DECLARE_MESSAGE_MAP()
public:
CListCtrl m_ProcList;
CodeSegList m_vecProc;
CodeSeg* m_selectedProc;
CMenu m_Menu;
CSearchDlg sDlg;
HACCEL m_hAccelTable;
void FillProcList(CString keyword);
int findProcListIndexBySelected();
int findProcByName(CString strKeyword);
afx_msg void OnSize(UINT nType, int cx, int cy);
afx_msg void OnRclickProclist(NMHDR *pNMHDR, LRESULT *pResult);
afx_msg void OnDetourhookFinddetouraddr();
afx_msg void OnDetourhookDump();
afx_msg void OnDetourhookCopyaddress();
afx_msg void OnDetourhookCopyproc();
afx_msg void OnDetourhookSearchproc();
virtual BOOL PreTranslateMessage(MSG* pMsg);
afx_msg void OnCustomdrawProclist(NMHDR *pNMHDR, LRESULT *pResult);
};