home *** CD-ROM | disk | FTP | other *** search
/ Amiga ISO Collection / AmigaUtilCD2.iso / Misc / DC-POS24.LZX / pOS / Guide.lzx / Guide / pLayer / Region.h < prev   
Encoding:
C/C++ Source or Header  |  1997-03-11  |  1.6 KB  |  61 lines

  1. @DATABASE "pLayer/Region.h"
  2. @MASTER   "Work2:AD/IInc/pLayer/Region.h"
  3. @REMARK   This file was created by ADtoHT 2.0 on 11-Mär-97  13:35:19
  4. @REMARK   Do not edit
  5. @REMARK   ADtoHT is © 1993-1995 Christian Stieber
  6.  
  7. @NODE MAIN "pLayer/Region.h"
  8. @TOC "__pOS_Dev.guide/MAIN"
  9.  
  10. @{"pLayer/Region.h" LINK File}
  11.  
  12.  
  13. @{b}Structures@{ub}
  14.  
  15. @{"pOS_Region" LINK "pLayer/Region.h/File" 30}  @{"pOS_RegionRectangle" LINK "pLayer/Region.h/File" 21}
  16.  
  17. @ENDNODE
  18. @NODE File "pLayer/Region.h"
  19. #ifndef __INC_POS_PLAYER_REGION_H
  20. #define __INC_POS_PLAYER_REGION_H
  21. /*******************************************************************
  22.  Includes Release 24
  23.  (C) Copyright 1995-1997 proDAD
  24.      All Rights Reserved
  25.  
  26.  $AUT Holger Burkarth
  27.  $DAT >>Region.h<<   13 Apr 1996    17:20:41 - (C) ProDAD
  28. *******************************************************************/
  29. #ifndef __INC_POS_PEXEC_MEMORY_H
  30. #include <@{"pExec/Memory.h" LINK "pExec/Memory.h/File"}>
  31. #endif
  32. #ifndef __INC_POS_PLAYER_RECT_H
  33. #include <@{"pLayer/Rect.h" LINK "pLayer/Rect.h/File"}>
  34. #endif
  35.  
  36.  
  37. /*----------------------------------
  38. -----------------------------------*/
  39. struct pOS_RegionRectangle
  40. {
  41.   @{"struct pOS_Node" LINK "pExec/List.h/File" 18}      rr_Node;
  42.   @{"struct pOS_Rectangle" LINK "pLayer/Rect.h/File" 17} rr_Bounds;
  43. };
  44.  
  45.  
  46. /*----------------------------------
  47. -----------------------------------*/
  48. struct pOS_Region
  49. {
  50.   @{"struct pOS_List" LINK "pExec/List.h/File" 26}      rg_List;    /* pOS_RegionRectangle List */
  51.   @{"struct pOS_Rectangle" LINK "pLayer/Rect.h/File" 17} rg_Bounds;
  52.  
  53. /* *** private */
  54.   @{"struct pOS_MemPool" LINK "pExec/Memory.h/File" 74}   rg_MemPool;
  55. };
  56.  
  57.  
  58.  
  59. #endif
  60. @ENDNODE
  61.