-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathPEOptionHeader.h
More file actions
34 lines (25 loc) · 984 Bytes
/
PEOptionHeader.h
File metadata and controls
34 lines (25 loc) · 984 Bytes
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
// PEOptionHeader.h: interface for the PEOptionHeader class.
//
//////////////////////////////////////////////////////////////////////
#if !defined(AFX_PEOPTIONHEADER_H__C2F4E306_A370_4813_886F_512594CD92F7__INCLUDED_)
#define AFX_PEOPTIONHEADER_H__C2F4E306_A370_4813_886F_512594CD92F7__INCLUDED_
#include "resource.h"
#include <string>
#include "PETool.h"
#if _MSC_VER > 1000
#pragma once
#endif // _MSC_VER > 1000
class PEOptionHeader
{
public:
PEOptionHeader();
virtual ~PEOptionHeader();
public:
void ShowDirtoryView(HINSTANCE hInstance, HWND hwndDlg, PETool *tool);
void ParsingDirtoryInfo(HWND hwndDlg, IMAGE_DATA_DIRECTORY DataDirectory[16]);
void ShowImportView(HWND hwndDlg);
void ParsingImportInfo(HWND hwndDlg, IMAGE_DATA_DIRECTORY importDirectory);
void ShowExportView(HWND hwndDlg);
void ParsingExportInfo(HWND hwndDlg, IMAGE_DATA_DIRECTORY exportDirectory);
};
#endif // !defined(AFX_PEOPTIONHEADER_H__C2F4E306_A370_4813_886F_512594CD92F7__INCLUDED_)