summaryrefslogtreecommitdiffhomepage
path: root/include/perk/perk_structs.h
diff options
context:
space:
mode:
authormidipix <writeonce@midipix.org>2016-11-19 12:20:12 -0500
committermidipix <writeonce@midipix.org>2016-11-19 12:22:21 -0500
commit8dd726502b05e31022104aac81ae901617827773 (patch)
tree29aa97d3179b0a3bada40e303842f4c6939a49cc /include/perk/perk_structs.h
parenta09b565929cdefee54c76c828a2ebc90fbb0de1b (diff)
downloadperk-8dd726502b05e31022104aac81ae901617827773.tar.bz2
perk-8dd726502b05e31022104aac81ae901617827773.tar.xz
PE format: struct pe_export_hdr [and friends] --> pe_raw_export_hdr.
Diffstat (limited to 'include/perk/perk_structs.h')
-rw-r--r--include/perk/perk_structs.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/include/perk/perk_structs.h b/include/perk/perk_structs.h
index a8aa069..64c83b0 100644
--- a/include/perk/perk_structs.h
+++ b/include/perk/perk_structs.h
@@ -243,7 +243,7 @@ struct pe_raw_sec_hdr {
};
-struct pe_export_hdr {
+struct pe_raw_export_hdr {
unsigned char export_flags [0x04]; /* 0x00 */
unsigned char time_date_stamp [0x04]; /* 0x04 */
unsigned char major_ver [0x02]; /* 0x08 */
@@ -258,7 +258,7 @@ struct pe_export_hdr {
};
-union pe_export_addr_tbl {
+union pe_raw_export_addr_tbl {
unsigned char export_rva [0x04]; /* 0x00 */
unsigned char forwarder_rva [0x04]; /* 0x00 */
};