diff options
author | midipix <writeonce@midipix.org> | 2016-12-01 05:49:43 -0500 |
---|---|---|
committer | midipix <writeonce@midipix.org> | 2016-12-01 05:49:43 -0500 |
commit | 38e46d85e169188a294df250feaf3a2a63373766 (patch) | |
tree | dbfc37fe3911cecd746f3b7b8c2bfa233899da67 | |
parent | 0d33f17d7705249d28c30c32878cd1841cf88be4 (diff) | |
download | perk-38e46d85e169188a294df250feaf3a2a63373766.tar.bz2 perk-38e46d85e169188a294df250feaf3a2a63373766.tar.xz |
struct pe_raw_data_dirs: member name normalization.
-rw-r--r-- | include/perk/perk_structs.h | 34 |
1 files changed, 17 insertions, 17 deletions
diff --git a/include/perk/perk_structs.h b/include/perk/perk_structs.h index 2d7d1de..acc3617 100644 --- a/include/perk/perk_structs.h +++ b/include/perk/perk_structs.h @@ -99,23 +99,23 @@ struct pe_raw_opt_hdr_dirs { }; struct pe_raw_data_dirs { - unsigned char rva_and_sizes [0x04]; - unsigned char export_tbl [0x08]; - unsigned char import_tbl [0x08]; - unsigned char resource_tbl [0x08]; - unsigned char exception_tbl [0x08]; - unsigned char certificate_tbl [0x08]; - unsigned char base_reloc_tbl [0x08]; - unsigned char debug [0x08]; - unsigned char arch [0x08]; - unsigned char global_ptr [0x08]; - unsigned char tls_tbl [0x08]; - unsigned char load_config_tbl [0x08]; - unsigned char bound_import [0x08]; - unsigned char iat [0x08]; - unsigned char delay_import_descriptor [0x08]; - unsigned char clr_runtime_hdr [0x08]; - unsigned char reserved [0x08]; + unsigned char coh_rva_and_sizes [0x04]; + unsigned char coh_export_tbl [0x08]; + unsigned char coh_import_tbl [0x08]; + unsigned char coh_resource_tbl [0x08]; + unsigned char coh_exception_tbl [0x08]; + unsigned char coh_certificate_tbl [0x08]; + unsigned char coh_base_reloc_tbl [0x08]; + unsigned char coh_debug [0x08]; + unsigned char coh_arch [0x08]; + unsigned char coh_global_ptr [0x08]; + unsigned char coh_tls_tbl [0x08]; + unsigned char coh_load_config_tbl [0x08]; + unsigned char coh_bound_import [0x08]; + unsigned char coh_iat [0x08]; + unsigned char coh_delay_import_descriptor [0x08]; + unsigned char coh_clr_runtime_hdr [0x08]; + unsigned char coh_reserved [0x08]; }; struct pe_raw_opt_hdr_32 { |