summaryrefslogtreecommitdiffhomepage
path: root/include/pemagine/pe_structs.h
diff options
context:
space:
mode:
authormidipix <writeonce@midipix.org>2016-11-19 15:09:44 -0500
committermidipix <writeonce@midipix.org>2016-11-19 15:09:44 -0500
commit50453626fa082d49c5e7cd94d6d90e84fc74f781 (patch)
tree00ddd20b06bb2cd68b5ab2a343ab8a6b623c306c /include/pemagine/pe_structs.h
parent9e3ad969595768bd1a0d4f22dd433ea9e92f0b15 (diff)
downloadpemagine-50453626fa082d49c5e7cd94d6d90e84fc74f781.tar.bz2
pemagine-50453626fa082d49c5e7cd94d6d90e84fc74f781.tar.xz
PE format: struct pe_import_hdr [and friends] --> struct pe_raw_import_hdr.
Diffstat (limited to 'include/pemagine/pe_structs.h')
-rw-r--r--include/pemagine/pe_structs.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/include/pemagine/pe_structs.h b/include/pemagine/pe_structs.h
index c99dbd4..db701ab 100644
--- a/include/pemagine/pe_structs.h
+++ b/include/pemagine/pe_structs.h
@@ -264,7 +264,7 @@ union pe_export_addr_tbl {
};
-union pe_import_lookup {
+union pe_raw_import_lookup {
unsigned char import_lookup_entry_64 [0x08]; /* 0x00 */
unsigned char import_lookup_entry_32 [0x04]; /* 0x00 */
unsigned char hint_name_tbl_rva [0x04]; /* 0x00 */
@@ -272,7 +272,7 @@ union pe_import_lookup {
};
-struct pe_import_hdr {
+struct pe_raw_import_hdr {
unsigned char import_lookup_tbl_rva [0x04]; /* 0x00 */
unsigned char time_date_stamp [0x04]; /* 0x04 */
unsigned char forwarder_chain [0x04]; /* 0x08 */
@@ -281,7 +281,7 @@ struct pe_import_hdr {
};
-struct pe_hint_name_entry {
+struct pe_raw_hint_name_entry {
unsigned char hint [0x02]; /* 0x00 */
unsigned char name [0x02]; /* 0x02 */
};