FreeCalypso > hg > freecalypso-reveng
comparison ticoff/intstruct.h @ 80:da103b9377e3
tiobjd: preparation for symbol sorting
author | Michael Spacefalcon <msokolov@ivan.Harhan.ORG> |
---|---|
date | Wed, 26 Mar 2014 02:44:19 +0000 |
parents | 10f3fbff5e97 |
children | e650fdc743fe |
comparison
equal
deleted
inserted
replaced
79:8f4996bff904 | 80:da103b9377e3 |
---|---|
10 unsigned reloc_offset; | 10 unsigned reloc_offset; |
11 unsigned line_offset; | 11 unsigned line_offset; |
12 unsigned nreloc; | 12 unsigned nreloc; |
13 unsigned nlineent; | 13 unsigned nlineent; |
14 unsigned flags; | 14 unsigned flags; |
15 unsigned nsymbols; | |
16 struct internal_syment **sorted_symbols; | |
15 }; | 17 }; |
16 | 18 |
17 struct internal_syment { | 19 struct internal_syment { |
18 char *name; | 20 char *name; |
19 unsigned value; | 21 unsigned value; |
20 int scnum; | 22 int scnum; |
21 int type; | 23 int type; |
22 int class; | 24 int class; |
23 u_char *aux; | 25 u_char *aux; |
26 struct internal_scnhdr *section; | |
24 }; | 27 }; |