diff options
author | midipix <writeonce@midipix.org> | 2025-06-14 12:22:30 +0000 |
---|---|---|
committer | midipix <writeonce@midipix.org> | 2025-06-14 12:22:30 +0000 |
commit | 5470da3f921eb2bc04dec41fa4f222965438923c (patch) | |
tree | 609074e2c833716721d16f0aa005a9723c4376b8 | |
parent | f1811f5d17d3f7b2c38e85818319863fd9b078e4 (diff) | |
download | perk-5470da3f921eb2bc04dec41fa4f222965438923c.tar.bz2 perk-5470da3f921eb2bc04dec41fa4f222965438923c.tar.xz |
PE/COFF format: added struct pe_raw_base_reloc_block.
-rw-r--r-- | include/perk/perk_structs.h | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/include/perk/perk_structs.h b/include/perk/perk_structs.h index b373bbe..4497758 100644 --- a/include/perk/perk_structs.h +++ b/include/perk/perk_structs.h @@ -343,6 +343,13 @@ struct pe_raw_coff_reloc { }; +struct pe_raw_base_reloc_block { + unsigned char blk_rva [0x04]; /* 0x00 */ + unsigned char blk_size [0x04]; /* 0x04 */ + unsigned char blk_data[] [0x02]; /* 0x08 */ +}; + + struct pe_raw_aux_rec_section { unsigned char aux_size [0x04]; /* 0x00 */ unsigned char aux_num_of_relocs [0x02]; /* 0x04 */ |