-
Notifications
You must be signed in to change notification settings - Fork 20
Expand file tree
/
Copy pathImageDataDirectoryName.cs
More file actions
68 lines (67 loc) · 1.9 KB
/
ImageDataDirectoryName.cs
File metadata and controls
68 lines (67 loc) · 1.9 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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
namespace BytecodeApi.PEParser;
/// <summary>
/// Specifies the name of a data directory entry of a PE image file.
/// </summary>
public enum ImageDataDirectoryName
{
/// <summary>
/// Specifies the export table address and size.
/// </summary>
ExportTable = 0,
/// <summary>
/// Specifies the import table address and size.
/// </summary>
ImportTable = 1,
/// <summary>
/// Specifies the resource table address and size.
/// </summary>
ResourceTable = 2,
/// <summary>
/// Specifies the exception table address and size.
/// </summary>
ExceptionTable = 3,
/// <summary>
/// Specifies the attribute certificate table address and size.
/// </summary>
CertificateTable = 4,
/// <summary>
/// Specifies the base relocation table address and size.
/// </summary>
BaseRelocationTable = 5,
/// <summary>
/// Specifies the debug data starting address and size.
/// </summary>
DebugDirectory = 6,
/// <summary>
/// Reserved, must be zero.
/// </summary>
Architecture = 7,
/// <summary>
/// Specifies the RVA of the value to be stored in the global pointer register. The size member of this structure must be set to zero.
/// </summary>
GlobalPointer = 8,
/// <summary>
/// Specifies the thread local storage (TLS) table address and size.
/// </summary>
TlsTable = 9,
/// <summary>
/// Specifies the load configuration table address and size.
/// </summary>
LoadConfigurationTable = 10,
/// <summary>
/// Specifies the bound import table address and size.
/// </summary>
BoundImportTable = 11,
/// <summary>
/// Specifies the import address table address and size.
/// </summary>
ImportAddressTable = 12,
/// <summary>
/// Specifies the delay import descriptor address and size.
/// </summary>
DelayImportDescriptors = 13,
/// <summary>
/// Specifies the CLR runtime header address and size.
/// </summary>
ClrRuntimeHeader = 14
}