From e5823e2b6269c82dc348bece70a40b1d96520c25 Mon Sep 17 00:00:00 2001 From: midipix Date: Sat, 7 Jun 2025 13:39:58 +0000 Subject: struct pe_meta_coff_symbol: optimize for iterative name access. --- include/perk/perk_meta.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'include') diff --git a/include/perk/perk_meta.h b/include/perk/perk_meta.h index eeed089..a798426 100644 --- a/include/perk/perk_meta.h +++ b/include/perk/perk_meta.h @@ -252,13 +252,13 @@ struct pe_meta_import_lookup { /* coff: symbol table entry */ struct pe_meta_coff_symbol { - char cs_name[24]; - char * cs_long_name; + char * cs_name; uint32_t cs_value; int16_t cs_section_number; uint16_t cs_type; unsigned char cs_storage_class; unsigned char cs_num_of_aux_symbols; + char cs_name_buf[24]; }; -- cgit v1.2.3