summaryrefslogtreecommitdiffhomepage
path: root/include/perk/perk_structs.h
diff options
context:
space:
mode:
authormidipix <writeonce@midipix.org>2016-11-19 12:01:00 -0500
committermidipix <writeonce@midipix.org>2016-11-19 12:04:13 -0500
commit8cb34ff6894a6b3066ece4d2eca60c030202e695 (patch)
treec3b8d76a16c4bba51f7d2702c2e3219ed860dda6 /include/perk/perk_structs.h
parent11fb1c69c1701d2bf6532443a7e9f57344308cdd (diff)
downloadperk-8cb34ff6894a6b3066ece4d2eca60c030202e695.tar.bz2
perk-8cb34ff6894a6b3066ece4d2eca60c030202e695.tar.xz
PE format: union pe_opt_hdr [and friends] --> union pe_raw_opt_hdr.
Diffstat (limited to 'include/perk/perk_structs.h')
-rw-r--r--include/perk/perk_structs.h24
1 files changed, 12 insertions, 12 deletions
diff --git a/include/perk/perk_structs.h b/include/perk/perk_structs.h
index 51689d3..e410b55 100644
--- a/include/perk/perk_structs.h
+++ b/include/perk/perk_structs.h
@@ -40,7 +40,7 @@ struct pe_raw_coff_file_hdr {
};
-struct pe_opt_hdr_std {
+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 */
@@ -51,12 +51,12 @@ struct pe_opt_hdr_std {
unsigned char base_of_code [0x04]; /* 0x14 */
};
-struct pe_opt_hdr_align {
+struct pe_raw_opt_hdr_align {
unsigned char section_align [0x04]; /* 0x20 */
unsigned char file_align [0x04]; /* 0x24 */
};
-struct pe_opt_hdr_vers {
+struct pe_raw_opt_hdr_vers {
unsigned char major_os_ver [0x02]; /* 0x28 */
unsigned char minor_os_ver [0x02]; /* 0x2a */
unsigned char major_image_ver [0x02]; /* 0x2c */
@@ -66,7 +66,7 @@ struct pe_opt_hdr_vers {
unsigned char win32_ver [0x04]; /* 0x34 */
};
-struct pe_opt_hdr_img {
+struct pe_raw_opt_hdr_img {
unsigned char size_of_image [0x04]; /* 0x38 */
unsigned char size_of_headers [0x04]; /* 0x3c */
unsigned char checksum [0x04]; /* 0x40 */
@@ -74,12 +74,12 @@ struct pe_opt_hdr_img {
unsigned char dll_characteristics [0x02]; /* 0x46 */
};
-struct pe_opt_hdr_ldr {
+struct pe_raw_opt_hdr_ldr {
unsigned char loader_flags [0x04];
unsigned char rva_and_sizes [0x04];
};
-struct pe_opt_hdr_dirs {
+struct pe_raw_opt_hdr_dirs {
unsigned char export_tbl [0x08];
unsigned char import_tbl [0x08];
unsigned char resource_tbl [0x08];
@@ -98,7 +98,7 @@ struct pe_opt_hdr_dirs {
unsigned char reserved [0x08];
};
-struct pe_data_dirs {
+struct pe_raw_data_dirs {
unsigned char rva_and_sizes [0x04];
unsigned char export_tbl [0x08];
unsigned char import_tbl [0x08];
@@ -118,7 +118,7 @@ struct pe_data_dirs {
unsigned char reserved [0x08];
};
-struct pe_opt_hdr_32 {
+struct pe_raw_opt_hdr_32 {
unsigned char magic [0x02]; /* 0x00 */
unsigned char major_linker_ver [0x01]; /* 0x02 */
unsigned char minor_linker_ver [0x01]; /* 0x03 */
@@ -168,7 +168,7 @@ struct pe_opt_hdr_32 {
};
-struct pe_opt_hdr_64 {
+struct pe_raw_opt_hdr_64 {
unsigned char magic [0x02]; /* 0x00 */
unsigned char major_linker_ver [0x01]; /* 0x02 */
unsigned char minor_linker_ver [0x01]; /* 0x03 */
@@ -217,9 +217,9 @@ struct pe_opt_hdr_64 {
};
-union pe_opt_hdr {
- struct pe_opt_hdr_32 opt_hdr_32;
- struct pe_opt_hdr_64 opt_hdr_64;
+union pe_raw_opt_hdr {
+ struct pe_raw_opt_hdr_32 opt_hdr_32;
+ struct pe_raw_opt_hdr_64 opt_hdr_64;
};