64ebb8
PE format: added struct pe_coff_symbol_name.
@@ -296,6 +296,16 @@ struct pe_coff_symbol {
|
|
296
296
|
unsigned char num_of_aux_symbols [0x01]; /* 0x11 */
|
297
297
|
};
|
298
298
|
|
299
|
+
struct pe_coff_symbol_name {
|
300
|
+
union {
|
301
|
+
unsigned char short_name [0x08]; /* 0x00 */
|
302
|
+
|
303
|
+
struct {
|
304
|
+
unsigned char zeroes [0x04]; /* 0x00 */
|
305
|
+
unsigned char offset [0x04]; /* 0x04 */
|
306
|
+
} long_name;
|
307
|
+
};
|
308
|
+
};
|
299
309
|
|
300
310
|
|
301
311
|
}
|