diff options
author | midipix <writeonce@midipix.org> | 2025-06-15 06:03:32 +0000 |
---|---|---|
committer | midipix <writeonce@midipix.org> | 2025-06-15 06:03:32 +0000 |
commit | e247b34cbfe30966858ac069f01cf17fc5b0ce91 (patch) | |
tree | 1dff6d6f4d25b7ea3f518c03a910c2b4205964c9 | |
parent | 6d6ef24f72fbc26830332a538b1a0786438e430d (diff) | |
download | mdso-e247b34cbfe30966858ac069f01cf17fc5b0ce91.tar.bz2 mdso-e247b34cbfe30966858ac069f01cf17fc5b0ce91.tar.xz |
PE/COFF format: added struct pe_raw_base_reloc_block.
-rw-r--r-- | src/internal/perk/perk_structs.h | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/src/internal/perk/perk_structs.h b/src/internal/perk/perk_structs.h index b373bbe..4497758 100644 --- a/src/internal/perk/perk_structs.h +++ b/src/internal/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 */ |