From 6f417fb1c686f26ca915bb357a6623557efffd89 Mon Sep 17 00:00:00 2001 From: midipix Date: Jun 10 2025 14:07:14 +0000 Subject: PE/COFF api: added struct pe_meta_aux_rec_section. --- diff --git a/include/perk/perk_meta.h b/include/perk/perk_meta.h index cbe302b..4ee150f 100644 --- a/include/perk/perk_meta.h +++ b/include/perk/perk_meta.h @@ -266,6 +266,16 @@ struct pe_meta_coff_symbol { char cs_name_buf[24]; }; +/* auxiliary record for a section symbol */ +struct pe_meta_aux_rec_section { + uint32_t aux_size; + uint16_t aux_num_of_relocs; + uint16_t aux_num_of_line_nums; + uint32_t aux_check_sum; + uint16_t aux_number; + uint8_t aux_selection; +}; + #ifdef __cplusplus }