summaryrefslogtreecommitdiffhomepage
path: root/include
diff options
context:
space:
mode:
authormidipix <writeonce@midipix.org>2016-12-02 16:58:08 -0500
committermidipix <writeonce@midipix.org>2016-12-02 17:11:20 -0500
commitafb44902287357c4e9084d707efdc8080a782b32 (patch)
tree2b09b6fcade6de6eaa2d54fd4b25f5a83d14b385 /include
parentf6b8ef5f17e9e3d05fa69466d9aa0bd3bc10ee36 (diff)
downloadpemagine-afb44902287357c4e9084d707efdc8080a782b32.tar.bz2
pemagine-afb44902287357c4e9084d707efdc8080a782b32.tar.xz
struct pe_raw_coff_symbol: member name normalization.
Diffstat (limited to 'include')
-rw-r--r--include/pemagine/pe_structs.h12
1 files changed, 6 insertions, 6 deletions
diff --git a/include/pemagine/pe_structs.h b/include/pemagine/pe_structs.h
index 0f5c46f..5af46e8 100644
--- a/include/pemagine/pe_structs.h
+++ b/include/pemagine/pe_structs.h
@@ -288,12 +288,12 @@ struct pe_raw_hint_name_entry {
struct pe_raw_coff_symbol {
- unsigned char name [0x08]; /* 0x00 */
- unsigned char value [0x04]; /* 0x08 */
- unsigned char section_number [0x02]; /* 0x0c */
- unsigned char type [0x02]; /* 0x0e */
- unsigned char storage_class [0x01]; /* 0x10 */
- unsigned char num_of_aux_symbols [0x01]; /* 0x11 */
+ unsigned char cs_name [0x08]; /* 0x00 */
+ unsigned char cs_value [0x04]; /* 0x08 */
+ 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 */
};
struct pe_raw_coff_symbol_name {