summaryrefslogtreecommitdiffhomepage
path: root/src/headers
diff options
context:
space:
mode:
authormidipix <writeonce@midipix.org>2016-11-19 15:03:17 -0500
committermidipix <writeonce@midipix.org>2016-11-19 15:03:17 -0500
commit149cda727007e6bb7f7d191714c5d2961e5c3766 (patch)
tree06fab34589c5d4a6bfe9b1564b31cd0b844228ce /src/headers
parent9089cb43bd0082e5558374d5297e918a801533c3 (diff)
downloadpemagine-149cda727007e6bb7f7d191714c5d2961e5c3766.tar.bz2
pemagine-149cda727007e6bb7f7d191714c5d2961e5c3766.tar.xz
PE format: struct pe_export_hdr [and friends] --> pe_raw_export_hdr.
Diffstat (limited to 'src/headers')
-rw-r--r--src/headers/pe_get_image_special_hdr_addr.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/headers/pe_get_image_special_hdr_addr.c b/src/headers/pe_get_image_special_hdr_addr.c
index 9788099..dc1e6b0 100644
--- a/src/headers/pe_get_image_special_hdr_addr.c
+++ b/src/headers/pe_get_image_special_hdr_addr.c
@@ -37,9 +37,9 @@ void * pe_get_image_special_hdr_addr(const void * base, uint32_t ordinal, uint32
}
pe_api
-struct pe_export_hdr * pe_get_image_export_hdr_addr(const void * base, uint32_t * sec_size)
+struct pe_raw_export_hdr * pe_get_image_export_hdr_addr(const void * base, uint32_t * sec_size)
{
- return (struct pe_export_hdr *)pe_get_image_special_hdr_addr(base,PE_IMAGE_DATA_DIR_ORDINAL_EXPORT,sec_size);
+ return (struct pe_raw_export_hdr *)pe_get_image_special_hdr_addr(base,PE_IMAGE_DATA_DIR_ORDINAL_EXPORT,sec_size);
}
pe_api