diff options
author | midipix <writeonce@midipix.org> | 2025-06-10 08:40:58 +0000 |
---|---|---|
committer | midipix <writeonce@midipix.org> | 2025-06-10 08:52:51 +0000 |
commit | d876aa82c6c61140fec1e4f2f47422aec2139cad (patch) | |
tree | 212ece1f80836f513dfa5f63014cfedfa80c2019 | |
parent | 9e5044312b2f620ec7000cf9f122c2fec6e18ea9 (diff) | |
download | mdso-d876aa82c6c61140fec1e4f2f47422aec2139cad.tar.bz2 mdso-d876aa82c6c61140fec1e4f2f47422aec2139cad.tar.xz |
PE defs: added struct pe_raw_aux_rec_weaksym.
-rw-r--r-- | src/internal/perk/perk_structs.h | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/src/internal/perk/perk_structs.h b/src/internal/perk/perk_structs.h index 6a726e3..b373bbe 100644 --- a/src/internal/perk/perk_structs.h +++ b/src/internal/perk/perk_structs.h @@ -377,6 +377,12 @@ struct pe_raw_aux_rec_efinfo { unsigned char aux_trail [0x02]; /* 0x10 */ }; +struct pe_raw_aux_rec_weaksym { + unsigned char aux_tag_index [0x04]; /* 0x00 */ + unsigned char aux_characteristics [0x04]; /* 0x04 */ + unsigned char aux_unused [0x0a]; /* 0x08 */ +}; + struct pe_raw_archive_common_hdr { unsigned char ar_file_id [0x10]; /* 0x00 */ unsigned char ar_time_date_stamp [0x0c]; /* 0x10 */ |