summaryrefslogtreecommitdiffhomepage
path: root/include
diff options
context:
space:
mode:
authormidipix <writeonce@midipix.org>2016-11-30 19:30:42 -0500
committermidipix <writeonce@midipix.org>2016-11-30 19:30:42 -0500
commita32475e2add2db734f8e4d3c1552c524f342bf94 (patch)
tree0c8333e34f237b654ff6888069169d6fdd34913e /include
parent12bebb7780b8bef12565337ad4dca4da80b02f79 (diff)
downloadpemagine-a32475e2add2db734f8e4d3c1552c524f342bf94.tar.bz2
pemagine-a32475e2add2db734f8e4d3c1552c524f342bf94.tar.xz
struct pe_raw_opt_hdr_std: 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 93f6815..f771263 100644
--- a/include/pemagine/pe_structs.h
+++ b/include/pemagine/pe_structs.h
@@ -41,14 +41,14 @@ struct pe_raw_coff_file_hdr {
struct pe_raw_opt_hdr_std {
- unsigned char magic [0x02]; /* 0x00 */
- unsigned char major_linker_ver [0x01]; /* 0x02 */
- unsigned char minor_linker_ver [0x01]; /* 0x03 */
- unsigned char size_of_code [0x04]; /* 0x04 */
- unsigned char size_of_initialized_data [0x04]; /* 0x08 */
- unsigned char size_of_uninitialized_data [0x04]; /* 0x0c */
- unsigned char entry_point [0x04]; /* 0x10 */
- unsigned char base_of_code [0x04]; /* 0x14 */
+ unsigned char coh_magic [0x02]; /* 0x00 */
+ unsigned char coh_major_linker_ver [0x01]; /* 0x02 */
+ unsigned char coh_minor_linker_ver [0x01]; /* 0x03 */
+ unsigned char coh_size_of_code [0x04]; /* 0x04 */
+ unsigned char coh_size_of_inited_data [0x04]; /* 0x08 */
+ unsigned char coh_size_of_uninited_data [0x04]; /* 0x0c */
+ unsigned char coh_entry_point [0x04]; /* 0x10 */
+ unsigned char coh_base_of_code [0x04]; /* 0x14 */
};
struct pe_raw_opt_hdr_align {