1234567891011121314151617181920212223242526272829 |
- #ifndef RDOFF_RDFLOAD_H
- #define RDOFF_RDFLOAD_H 1
- #include "rdfutils.h"
- typedef struct RDFModuleStruct {
- rdffile f;
- uint8_t *t, *d, *b;
- uint32_t textrel;
- uint32_t datarel;
- uint32_t bssrel;
- void *symtab;
- } rdfmodule;
- rdfmodule *rdfload(const char *filename);
- int rdf_relocate(rdfmodule * m);
- #endif
|