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

  1. #ifndef PSECTION_H
  2. #define PSECTION_H
  3.  
  4. typedef struct
  5. {
  6.     unsigned char *name;        //Section Name
  7.     unsigned char *elfadr;        //Address of Section in Elf-image
  8.     unsigned char *virtadr;        //Address of relocated section
  9.     unsigned long size;        //Size of Section
  10.     unsigned long type;
  11.     unsigned long flags;
  12.     unsigned long link;        //Symbol section for reloc
  13.                     //String section for symbol
  14.     unsigned long info;        //Target section for reloc
  15.                     //first external symbol for symbol
  16.     unsigned long entsize;        //Entrysize for table section
  17. } PSection;
  18.  
  19. #endif
  20.