home *** CD-ROM | disk | FTP | other *** search
/ Amiga ISO Collection / AmigaUtilCD2.iso / Misc / DC-POS24.LZX / pOS / pOSxA.lzx / pOSxA / graphics / regions.h < prev    next >
Encoding:
C/C++ Source or Header  |  1997-03-12  |  744 b   |  44 lines

  1. #ifndef    GRAPHICS_REGIONS_H
  2. #define    GRAPHICS_REGIONS_H
  3.  
  4. /*******************************************************************
  5.  pOS / Amiga adapt
  6. *******************************************************************/
  7.  
  8. #ifndef EXEC_TYPES_H
  9. #include <exec/types.h>
  10. #endif
  11. #ifndef __INC_POS_PLAYER_REGION_H
  12. #include <p:pLayer/Region.h>
  13. #endif
  14. #ifndef GRAPHICS_GFX_H
  15. #include <graphics/gfx.h>
  16. #endif
  17.  
  18.  
  19. struct Region  /** NOT_COMPATIBLE **/
  20. {
  21.   struct MinList   rg_List;
  22.   struct Rectangle bounds;
  23.  
  24. /** private **/
  25.   struct pOS_MemPool rg_MemPool;
  26. };
  27.  
  28.  
  29.  
  30.  
  31.  
  32. #ifdef __IGNORE_NOT_SUPPORTED__
  33.  
  34.  struct RegionRectangle
  35.  {
  36.    struct MinNode    rr_Node;
  37.    struct Rectangle  bounds;
  38.  };
  39.  
  40.  
  41. #endif /** __IGNORE_NOT_SUPPORTED__ **/
  42.  
  43. #endif    /* GRAPHICS_REGIONS_H */
  44.