1 /* rdfload.h RDOFF Object File loader library header file
3 * The Netwide Assembler is copyright (C) 1996 Simon Tatham and
4 * Julian Hall. All rights reserved. The software is
5 * redistributable under the licence given in the file "Licence"
6 * distributed in the NASM archive.
8 * See the file 'rdfload.c' for special license information for this
17 typedef struct RDFModuleStruct
{
18 rdffile f
; /* file structure */
19 unsigned char * t
, * d
, * b
; /* text, data, and bss segments */
26 rdfmodule
* rdfload(const char * filename
);
27 int rdf_relocate(rdfmodule
* m
);