diff options
author | midipix <writeonce@midipix.org> | 2019-08-21 16:55:08 -0400 |
---|---|---|
committer | midipix <writeonce@midipix.org> | 2019-08-21 16:55:08 -0400 |
commit | 1cf85a2632239c6309283cd29f3f10302a884d36 (patch) | |
tree | 7e786d3618d8fe11f6d77f517370ab615c892038 /src | |
parent | 5b1ca37d3b2328db19264cafa32da1670747f49d (diff) | |
download | mdso-1cf85a2632239c6309283cd29f3f10302a884d36.tar.bz2 mdso-1cf85a2632239c6309283cd29f3f10302a884d36.tar.xz |
internals: perk_structs.h: updated to latest version from libperk.
Diffstat (limited to 'src')
-rw-r--r-- | src/internal/perk/perk_structs.h | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/src/internal/perk/perk_structs.h b/src/internal/perk/perk_structs.h index 5cf49ae..4dd2ffc 100644 --- a/src/internal/perk/perk_structs.h +++ b/src/internal/perk/perk_structs.h @@ -291,11 +291,14 @@ struct pe_raw_import_hdr { }; +struct pe_raw_import_name { + unsigned char ih_name [0x01]; /* 0x00 */ +}; + + union pe_raw_import_lookup { unsigned char ii_import_lookup_entry_64 [0x08]; /* 0x00 */ unsigned char ii_import_lookup_entry_32 [0x04]; /* 0x00 */ - unsigned char ii_hint_name_tbl_rva [0x04]; /* 0x00 */ - unsigned char ii_ordinal_number [0x02]; /* 0x00 */ }; |