NASM 0.98.08
[nasm.git] / rdoff / rdfload.h
blob5e264b93524758cd3c97750337e71a7d08ac6e3a
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
9 * file.
12 #ifndef _RDFLOAD_H
13 #define _RDFLOAD_H
15 #include "rdoff.h"
17 typedef struct RDFModuleStruct {
18 rdffile f; /* file structure */
19 unsigned char * t, * d, * b; /* text, data, and bss segments */
20 long textrel;
21 long datarel;
22 long bssrel;
23 void * symtab;
24 } rdfmodule;
26 rdfmodule * rdfload(const char * filename);
27 int rdf_relocate(rdfmodule * m);
29 #endif