From 18f51d631e5e59a8a0b840eebde3fd6ab1f1b5d1 Mon Sep 17 00:00:00 2001 From: midipix Date: Sat, 7 Jun 2025 15:17:40 +0000 Subject: api: coff symbol structs: rename .cs_num_of_aux_symbols to reflect content. --- include/perk/perk_meta.h | 2 +- include/perk/perk_structs.h | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) (limited to 'include') diff --git a/include/perk/perk_meta.h b/include/perk/perk_meta.h index 909bd54..b686d13 100644 --- a/include/perk/perk_meta.h +++ b/include/perk/perk_meta.h @@ -257,7 +257,7 @@ struct pe_meta_coff_symbol { int16_t cs_section_number; uint16_t cs_type; unsigned char cs_storage_class; - unsigned char cs_num_of_aux_symbols; + unsigned char cs_num_of_aux_recs; const void * cs_aux_recs; char cs_name_buf[24]; }; diff --git a/include/perk/perk_structs.h b/include/perk/perk_structs.h index 9ffb480..56264ae 100644 --- a/include/perk/perk_structs.h +++ b/include/perk/perk_structs.h @@ -314,7 +314,7 @@ struct pe_raw_coff_symbol { unsigned char cs_section_number [0x02]; /* 0x0c */ unsigned char cs_type [0x02]; /* 0x0e */ unsigned char cs_storage_class [0x01]; /* 0x10 */ - unsigned char cs_num_of_aux_symbols [0x01]; /* 0x11 */ + unsigned char cs_num_of_aux_recs [0x01]; /* 0x11 */ }; -- cgit v1.2.3