summaryrefslogtreecommitdiffhomepage
path: root/include
diff options
context:
space:
mode:
authormidipix <writeonce@midipix.org>2016-12-02 17:37:49 -0500
committermidipix <writeonce@midipix.org>2016-12-02 17:37:49 -0500
commite30260f52db6bedbd31d4e60379b516970fe5ce6 (patch)
tree46710c8e573e5c3391da93d36b516db84aa7956c /include
parent982a7bd66a56ec4f1e2d9989990228079653a9b8 (diff)
downloadpemagine-e30260f52db6bedbd31d4e60379b516970fe5ce6.tar.bz2
pemagine-e30260f52db6bedbd31d4e60379b516970fe5ce6.tar.xz
whitespace meditation.
Diffstat (limited to 'include')
-rw-r--r--include/pemagine/pe_structs.h9
1 files changed, 9 insertions, 0 deletions
diff --git a/include/pemagine/pe_structs.h b/include/pemagine/pe_structs.h
index df03168..3c2e478 100644
--- a/include/pemagine/pe_structs.h
+++ b/include/pemagine/pe_structs.h
@@ -51,11 +51,13 @@ struct pe_raw_opt_hdr_std {
unsigned char coh_base_of_code [0x04]; /* 0x14 */
};
+
struct pe_raw_opt_hdr_align {
unsigned char coh_section_align [0x04]; /* 0x20 */
unsigned char coh_file_align [0x04]; /* 0x24 */
};
+
struct pe_raw_opt_hdr_vers {
unsigned char coh_major_os_ver [0x02]; /* 0x28 */
unsigned char coh_minor_os_ver [0x02]; /* 0x2a */
@@ -66,6 +68,7 @@ struct pe_raw_opt_hdr_vers {
unsigned char coh_win32_ver [0x04]; /* 0x34 */
};
+
struct pe_raw_opt_hdr_img {
unsigned char coh_size_of_image [0x04]; /* 0x38 */
unsigned char coh_size_of_headers [0x04]; /* 0x3c */
@@ -74,11 +77,13 @@ struct pe_raw_opt_hdr_img {
unsigned char coh_dll_characteristics [0x02]; /* 0x46 */
};
+
struct pe_raw_opt_hdr_ldr {
unsigned char coh_loader_flags [0x04];
unsigned char coh_rva_and_sizes [0x04];
};
+
struct pe_raw_opt_hdr_dirs {
unsigned char coh_export_tbl [0x08];
unsigned char coh_import_tbl [0x08];
@@ -98,6 +103,7 @@ struct pe_raw_opt_hdr_dirs {
unsigned char coh_reserved [0x08];
};
+
struct pe_raw_data_dirs {
unsigned char coh_rva_and_sizes [0x04];
unsigned char coh_export_tbl [0x08];
@@ -118,6 +124,7 @@ struct pe_raw_data_dirs {
unsigned char coh_reserved [0x08];
};
+
struct pe_raw_opt_hdr_32 {
unsigned char coh_magic [0x02]; /* 0x00 */
unsigned char coh_major_linker_ver [0x01]; /* 0x02 */
@@ -296,6 +303,7 @@ struct pe_raw_coff_symbol {
unsigned char cs_num_of_aux_symbols [0x01]; /* 0x11 */
};
+
struct pe_raw_coff_symbol_name {
union {
unsigned char cs_short_name [0x08]; /* 0x00 */
@@ -307,6 +315,7 @@ struct pe_raw_coff_symbol_name {
};
};
+
#ifdef __cplusplus
}
#endif