FreeCalypso > hg > freecalypso-reveng
view ticoff/intstruct.h @ 110:e650fdc743fe
tiobjd: higher-level reloc handling
author | Michael Spacefalcon <msokolov@ivan.Harhan.ORG> |
---|---|
date | Thu, 03 Apr 2014 03:03:41 +0000 |
parents | da103b9377e3 |
children | 5f4141ee175b |
line wrap: on
line source
/* * The structures defined in this header file * are internal to our utility. */ struct internal_scnhdr { char *name; unsigned size; unsigned data_offset; unsigned reloc_offset; unsigned line_offset; unsigned nreloc; unsigned nlineent; unsigned flags; unsigned nsymbols; struct internal_syment **sorted_symbols; struct internal_reloc *int_relocs; }; struct internal_syment { char *name; unsigned value; int scnum; int type; int class; u_char *aux; struct internal_scnhdr *section; }; struct internal_reloc { unsigned location; struct internal_syment *sym; int type; char *typestr; };