From 945985cb313ada34d002423fbedfdebebcd22edc Mon Sep 17 00:00:00 2001 From: midipix Date: Sat, 19 Nov 2016 14:46:50 -0500 Subject: PE format: struct pe_coff_file_hdr --> struct pe_raw_coff_file_hdr. --- include/pemagine/pe_structs.h | 2 +- include/pemagine/pemagine.h | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) (limited to 'include') diff --git a/include/pemagine/pe_structs.h b/include/pemagine/pe_structs.h index aa5fd69..9bc8aee 100644 --- a/include/pemagine/pe_structs.h +++ b/include/pemagine/pe_structs.h @@ -28,7 +28,7 @@ struct pe_raw_image_dos_hdr { }; -struct pe_coff_file_hdr { +struct pe_raw_coff_file_hdr { unsigned char signature [0x04]; /* 0x00 */ unsigned char machine [0x02]; /* 0x04 */ unsigned char num_of_sections [0x02]; /* 0x06 */ diff --git a/include/pemagine/pemagine.h b/include/pemagine/pemagine.h index db1023a..bc3e4dc 100644 --- a/include/pemagine/pemagine.h +++ b/include/pemagine/pemagine.h @@ -153,7 +153,7 @@ typedef int pe_enum_image_import_hdrs_callback( /* library functions */ pe_api struct pe_raw_image_dos_hdr * pe_get_image_dos_hdr_addr (const void * base); -pe_api struct pe_coff_file_hdr * pe_get_image_coff_hdr_addr (const void * base); +pe_api struct pe_raw_coff_file_hdr * pe_get_image_coff_hdr_addr (const void * base); pe_api union pe_opt_hdr * pe_get_image_opt_hdr_addr (const void * base); pe_api struct pe_data_dirs * pe_get_image_data_dirs_addr (const void * base); pe_api struct pe_sec_hdr * pe_get_image_section_tbl_addr (const void * base); -- cgit v1.2.3