rdfload.h
上传用户:yuppie_zhu
上传日期:2007-01-08
资源大小:535k
文件大小:1k
源码类别:

编译器/解释器

开发平台:

C/C++

  1. /* rdfload.h RDOFF Object File loader library header file
  2.  *
  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.
  7.  *
  8.  * See the file 'rdfload.c' for special license information for this
  9.  * file.
  10.  */
  11. #ifndef _RDFLOAD_H
  12. #define _RDFLOAD_H
  13. #include "rdoff.h"
  14. typedef struct RDFModuleStruct {
  15.   rdffile f; /* file structure */
  16.   unsigned char * t, * d, * b; /* text, data, and bss segments */
  17.   long textrel;
  18.   long datarel;
  19.   long bssrel;
  20.   void * symtab;
  21. } rdfmodule;
  22. rdfmodule * rdfload(const char * filename);
  23. int rdf_relocate(rdfmodule * m);
  24. #endif