summaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
-rw-r--r--include/perk/perk_structs.h10
1 files changed, 10 insertions, 0 deletions
diff --git a/include/perk/perk_structs.h b/include/perk/perk_structs.h
index 0634a02..f012d33 100644
--- a/include/perk/perk_structs.h
+++ b/include/perk/perk_structs.h
@@ -296,6 +296,16 @@ struct pe_coff_symbol {
unsigned char num_of_aux_symbols [0x01]; /* 0x11 */
};
+struct pe_coff_symbol_name {
+ union {
+ unsigned char short_name [0x08]; /* 0x00 */
+
+ struct {
+ unsigned char zeroes [0x04]; /* 0x00 */
+ unsigned char offset [0x04]; /* 0x04 */
+ } long_name;
+ };
+};
#ifdef __cplusplus
}