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:39:36 -0500
commitf85420e809f96d08a97dae481da8e2c5f1cbadd1 (patch)
tree28716f79e1b17e984488dc8ce5e4bd017a543b24 /include
parent4dc3a41d1a3743c8038277568ea9bc21ae640308 (diff)
downloadperk-f85420e809f96d08a97dae481da8e2c5f1cbadd1.tar.bz2
perk-f85420e809f96d08a97dae481da8e2c5f1cbadd1.tar.xz
whitespace meditation.
Diffstat (limited to 'include')
-rw-r--r--include/perk/perk_structs.h9
1 files changed, 9 insertions, 0 deletions
diff --git a/include/perk/perk_structs.h b/include/perk/perk_structs.h
index f7752ff..0dc3a8a 100644
--- a/include/perk/perk_structs.h
+++ b/include/perk/perk_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