summaryrefslogtreecommitdiffhomepage
path: root/include
diff options
context:
space:
mode:
authormidipix <writeonce@midipix.org>2016-11-30 19:17:23 -0500
committermidipix <writeonce@midipix.org>2016-11-30 19:17:23 -0500
commit12bebb7780b8bef12565337ad4dca4da80b02f79 (patch)
tree5435c3c37c065c64a1bf1372982dddcf4be7d930 /include
parentc34a35179e922620229413cb9eb0f18cfc33076e (diff)
downloadpemagine-12bebb7780b8bef12565337ad4dca4da80b02f79.tar.bz2
pemagine-12bebb7780b8bef12565337ad4dca4da80b02f79.tar.xz
struct pe_raw_coff_file_hdr: member name normalization.
Diffstat (limited to 'include')
-rw-r--r--include/pemagine/pe_structs.h16
1 files changed, 8 insertions, 8 deletions
diff --git a/include/pemagine/pe_structs.h b/include/pemagine/pe_structs.h
index 7ca8a75..93f6815 100644
--- a/include/pemagine/pe_structs.h
+++ b/include/pemagine/pe_structs.h
@@ -29,14 +29,14 @@ struct pe_raw_image_dos_hdr {
struct pe_raw_coff_file_hdr {
- unsigned char signature [0x04]; /* 0x00 */
- unsigned char machine [0x02]; /* 0x04 */
- unsigned char num_of_sections [0x02]; /* 0x06 */
- unsigned char time_date_stamp [0x04]; /* 0x08 */
- unsigned char ptr_to_sym_tbl [0x04]; /* 0x0c */
- unsigned char num_of_syms [0x04]; /* 0x10 */
- unsigned char size_of_opt_hdr [0x02]; /* 0x14 */
- unsigned char characteristics [0x02]; /* 0x16 */
+ unsigned char cfh_signature [0x04]; /* 0x00 */
+ unsigned char cfh_machine [0x02]; /* 0x04 */
+ unsigned char cfh_num_of_sections [0x02]; /* 0x06 */
+ unsigned char cfh_time_date_stamp [0x04]; /* 0x08 */
+ unsigned char cfh_ptr_to_sym_tbl [0x04]; /* 0x0c */
+ unsigned char cfh_num_of_syms [0x04]; /* 0x10 */
+ unsigned char cfh_size_of_opt_hdr [0x02]; /* 0x14 */
+ unsigned char cfh_characteristics [0x02]; /* 0x16 */
};