forked from OSchip/llvm-project
Add constants for optional header magic field.
llvm-svn: 199972
This commit is contained in:
parent
0e2ccb2df1
commit
4d97536ad0
|
@ -451,6 +451,11 @@ namespace COFF {
|
|||
};
|
||||
|
||||
struct PEHeader {
|
||||
enum {
|
||||
PE32 = 0x10b,
|
||||
PE32_PLUS = 0x20b
|
||||
};
|
||||
|
||||
uint16_t Magic;
|
||||
uint8_t MajorLinkerVersion;
|
||||
uint8_t MinorLinkerVersion;
|
||||
|
|
Loading…
Reference in New Issue