summaryrefslogtreecommitdiffhomepage
path: root/include
diff options
context:
space:
mode:
authormidipix <writeonce@midipix.org>2025-06-07 15:17:40 +0000
committermidipix <writeonce@midipix.org>2025-06-07 15:20:07 +0000
commit18f51d631e5e59a8a0b840eebde3fd6ab1f1b5d1 (patch)
treec736b143b7c92957cbfc1c9d56381c7b9fd8c741 /include
parent8db559ac093a6df8ede582f9139908885e7f3e65 (diff)
downloadperk-18f51d631e5e59a8a0b840eebde3fd6ab1f1b5d1.tar.bz2
perk-18f51d631e5e59a8a0b840eebde3fd6ab1f1b5d1.tar.xz
api: coff symbol structs: rename .cs_num_of_aux_symbols to reflect content.
Diffstat (limited to 'include')
-rw-r--r--include/perk/perk_meta.h2
-rw-r--r--include/perk/perk_structs.h2
2 files changed, 2 insertions, 2 deletions
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 */
};