home *** CD-ROM | disk | FTP | other *** search
/ Amiga ISO Collection / AmigaUtilCD2.iso / Misc / DC-POS24.LZX / pOS / IncPOS.lzx / pLayer / Region.h < prev   
Encoding:
C/C++ Source or Header  |  1997-03-18  |  934 b   |  42 lines

  1. #ifndef __INC_POS_PLAYER_REGION_H
  2. #define __INC_POS_PLAYER_REGION_H
  3. /*******************************************************************
  4.  Includes Release 24
  5.  (C) Copyright 1995-1997 proDAD
  6.      All Rights Reserved
  7.  
  8.  $AUT Holger Burkarth
  9.  $DAT >>Region.h<<   13 Apr 1996    17:20:41 - (C) ProDAD
  10. *******************************************************************/
  11. #ifndef __INC_POS_PEXEC_MEMORY_H
  12. #include <pExec/Memory.h>
  13. #endif
  14. #ifndef __INC_POS_PLAYER_RECT_H
  15. #include <pLayer/Rect.h>
  16. #endif
  17.  
  18.  
  19. /*----------------------------------
  20. -----------------------------------*/
  21. struct pOS_RegionRectangle
  22. {
  23.   struct pOS_Node      rr_Node;
  24.   struct pOS_Rectangle rr_Bounds;
  25. };
  26.  
  27.  
  28. /*----------------------------------
  29. -----------------------------------*/
  30. struct pOS_Region
  31. {
  32.   struct pOS_List      rg_List;    /* pOS_RegionRectangle List */
  33.   struct pOS_Rectangle rg_Bounds;
  34.  
  35. /* *** private */
  36.   struct pOS_MemPool   rg_MemPool;
  37. };
  38.  
  39.  
  40.  
  41. #endif
  42.