home *** CD-ROM | disk | FTP | other *** search
/ Chip 2001 August - Disc 3 / chip_20018103_hu.iso / amiga / chiputil / gg / loadelfwos.lha / LoadElfWOS.lzx / src / elfobject.h next >
Encoding:
C/C++ Source or Header  |  1998-11-19  |  272 b   |  18 lines

  1. #ifndef PELFOBJECT_H
  2. #define PELFOBJECT_H
  3. #include "section.h"
  4. #include "symbol.h"
  5.  
  6. #define MAX_SECTIONS 100
  7.  
  8. typedef struct
  9. {
  10.     unsigned long    sectcnt;
  11.     char         *elfptr;
  12.     PSection     sections[MAX_SECTIONS];
  13.     unsigned long    symbolscnt;
  14.     PSymbol        *symbols;
  15. } PElfObject;
  16.  
  17. #endif
  18.