home *** CD-ROM | disk | FTP | other *** search
/ Amiga ISO Collection / AmigaUtilCD2.iso / Misc / DC-POS24.LZX / pOS / IncPOS.lzx / pDOS / Hunk.h < prev    next >
Encoding:
C/C++ Source or Header  |  1997-03-18  |  1.3 KB  |  56 lines

  1. #ifndef __INC_POS_PDOS_HUNK_H
  2. #define __INC_POS_PDOS_HUNK_H
  3. /*******************************************************************
  4.  Includes Release 24
  5.  (C) Copyright 1995-1997 proDAD
  6.      All Rights Reserved
  7.  
  8.  $AUT Holger Burkarth
  9.  $DAT >>Hunk.h<<   12 Sep 1996    09:06:42 - (C) ProDAD
  10. *******************************************************************/
  11. #ifndef __INC_POS_PDOS_DOSTYPES_H
  12. #include <pDOS/DosTypes.h>
  13. #endif
  14.  
  15.  
  16. /*----------------------------------
  17. -----------------------------------*/
  18. struct pOS_HunkStcHeader
  19. {
  20.   ULONG   hkhd_Dummy1;
  21.   ULONG   hkhd_HunkNum;     /* Number of hunks */
  22.   ULONG   hkhd_FirstHunk;
  23.   ULONG   hkhd_LastHunk;
  24.   ULONG   hkhd_NumBlocks[1];
  25. /** NumBlocks für jeden Hunk **/
  26. };
  27.  
  28.  
  29.  
  30. enum pOS_HunkTypes
  31. {
  32.   HUNKTYP_Unit          =999,
  33.   HUNKTYP_Name          =1000,
  34.   HUNKTYP_Code          =1001,
  35.   HUNKTYP_Data          =1002,
  36.   HUNKTYP_Bss           =1003,
  37.   HUNKTYP_Reloc32       =1004,
  38.   HUNKTYP_Reloc16       =1005,
  39.   HUNKTYP_Reloc8        =1006,
  40.   HUNKTYP_Ext           =1007,
  41.   HUNKTYP_Symbol        =1008,
  42.   HUNKTYP_Debug         =1009,
  43.   HUNKTYP_End           =1010,
  44.   HUNKTYP_Header        =1011,
  45.   HUNKTYP_Overlay       =1013,
  46.   HUNKTYP_Break         =1014,
  47.   HUNKTYP_DRel32        =1015,
  48.   HUNKTYP_DRel16        =1016,
  49.   HUNKTYP_DRel8         =1017,
  50.   HUNKTYP_Lib           =1018,
  51.   HUNKTYP_Index         =1019,
  52. };
  53.  
  54.  
  55. #endif
  56.