-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathPEOperation.h
More file actions
42 lines (32 loc) · 1.02 KB
/
PEOperation.h
File metadata and controls
42 lines (32 loc) · 1.02 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
// PEOperation.h: interface for the PEOperation class.
//
//////////////////////////////////////////////////////////////////////
#if !defined(AFX_PEOPERATION_H__9E6E7D46_727B_4AE7_9148_9489DB33FB49__INCLUDED_)
#define AFX_PEOPERATION_H__9E6E7D46_727B_4AE7_9148_9489DB33FB49__INCLUDED_
#include "resource.h"
#include <string>
#include "PETool.h"
#include "Util.h"
#include "PESectionHeader.h"
#include "PEOptionHeader.h"
#if _MSC_VER > 1000
#pragma once
#endif // _MSC_VER > 1000
class PEOperation
{
public:
PEOperation();
virtual ~PEOperation();
public:
void ShowPEView(HINSTANCE hInstance, HWND hwndDlg, TCHAR *path);
void ParsingPeInfo(CHAR* filePath); //ÏÔʾPEÍ·ÐÅÏ¢
private:
void SetPeInfoDlg(PETool::_IMAGE_ADR_TABLE &imageTable);
};
BOOL CALLBACK PEViewProc(
HWND hwndDlg, // handle to dialog box
UINT uMsg, // message
WPARAM wParam, // first message parameter
LPARAM lParam // second message parameter
);
#endif // !defined(AFX_PEOPERATION_H__9E6E7D46_727B_4AE7_9148_9489DB33FB49__INCLUDED_)