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

  1. @DATABASE "pDOS/SegmInfo.h"
  2. @MASTER   "Work2:AD/IInc/pDOS/SegmInfo.h"
  3. @REMARK   This file was created by ADtoHT 2.0 on 11-Mär-97  13:34:14
  4. @REMARK   Do not edit
  5. @REMARK   ADtoHT is © 1993-1995 Christian Stieber
  6.  
  7. @NODE MAIN "pDOS/SegmInfo.h"
  8. @TOC "__pOS_Dev.guide/MAIN"
  9.  
  10. @{"pDOS/SegmInfo.h" LINK File}
  11.  
  12.  
  13. @{b}Structures@{ub}
  14.  
  15. @{"pOS_SegmentInfo" LINK "pDOS/SegmInfo.h/File" 20}
  16.  
  17. @ENDNODE
  18. @NODE File "pDOS/SegmInfo.h"
  19. #ifndef __INC_POS_PDOS_SEGMINFO_H
  20. #define __INC_POS_PDOS_SEGMINFO_H
  21. /*******************************************************************
  22.  Includes Release 24
  23.  (C) Copyright 1995-1997 proDAD
  24.      All Rights Reserved
  25.  
  26.  $AUT Holger Burkarth
  27.  $DAT >>SegmInfo.h<<   11 Mar 1997    09:38:03 - (C) ProDAD
  28. *******************************************************************/
  29. #ifndef __INC_POS_PDOS_DOSTYPES_H
  30. #include <@{"pDOS/DosTypes.h" LINK "pDOS/DosTypes.h/File"}>
  31. #endif
  32. #ifndef __INC_POS_PDOS_SEGMENT_H
  33. #include <@{"pDos/Segment.h" LINK "pDOS/Segment.h/File"}>
  34. #endif
  35.  
  36. /*----------------------------------
  37. -----------------------------------*/
  38. struct pOS_SegmentInfo
  39. {
  40.         @{"UWORD" LINK "pExec/Types.h/File" 93}                  segi_StructSize;   /* sizeof(pOS_SegmentInfo) */
  41.   const @{"struct pOS_SegmentLst" LINK "pDOS/Segment.h/File" 32} *segi_SegmLst;
  42.   const @{"struct pOS_Segment" LINK "pDOS/Segment.h/File" 21}    *segi_Segm;
  43.   const @{"VOID" LINK "pExec/Types.h/File" 83}                  *segi_StartAddress; /* Start of segi_Segm */
  44.         @{"size_t" LINK "pExec/Types.h/File" 113}                 segi_SegmSize;     /* full size of segi_Segm */
  45.         @{"size_t" LINK "pExec/Types.h/File" 113}                 segi_SegmOffset;   /* Byte-Offset in segi_Segm */
  46.         @{"ULONG" LINK "pExec/Types.h/File" 91}                  segi_HunkType;     /* (enum pOS_HunkTypes) */
  47.         @{"ULONG" LINK "pExec/Types.h/File" 91}                  segi_MemFlags;     /* (enum pOS_MemoryFlag) */
  48. };
  49.  
  50. #endif
  51. @ENDNODE
  52.