diff options
author | midipix <writeonce@midipix.org> | 2016-12-02 17:19:23 -0500 |
---|---|---|
committer | midipix <writeonce@midipix.org> | 2016-12-02 17:19:23 -0500 |
commit | 00e3d8bdf6c4ac8e5f12ea1e738d4c114931dfb2 (patch) | |
tree | 28d898f94fb5e2c8a776db30fae6cdcb829d5fe0 | |
parent | 0c1d8308d9ed0eb768298f9e889e8a1f1323242d (diff) | |
download | perk-00e3d8bdf6c4ac8e5f12ea1e738d4c114931dfb2.tar.bz2 perk-00e3d8bdf6c4ac8e5f12ea1e738d4c114931dfb2.tar.xz |
struct pe_raw_coff_symbol_name: member name normalization.
-rw-r--r-- | include/perk/perk_structs.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/include/perk/perk_structs.h b/include/perk/perk_structs.h index 11c651f..9cc687e 100644 --- a/include/perk/perk_structs.h +++ b/include/perk/perk_structs.h @@ -298,11 +298,11 @@ struct pe_raw_coff_symbol { struct pe_raw_coff_symbol_name { union { - unsigned char short_name [0x08]; /* 0x00 */ + unsigned char cs_short_name [0x08]; /* 0x00 */ struct { - unsigned char zeroes [0x04]; /* 0x00 */ - unsigned char offset [0x04]; /* 0x04 */ + unsigned char cs_zeroes [0x04]; /* 0x00 */ + unsigned char cs_offset [0x04]; /* 0x04 */ } long_name; }; }; |