home *** CD-ROM | disk | FTP | other *** search
/ Amiga ISO Collection / AmigaUtilCD2.iso / Programming / Misc / TRSICAT.LZX / CATS_CD2_TRSI / Inc&AD1.3 / Includes / graphics / regions.h < prev    next >
Encoding:
C/C++ Source or Header  |  1992-09-12  |  492 b   |  30 lines

  1. #ifndef GRAPHICS_REGIONS_H
  2. #define GRAPHICS_REGIONS_H
  3. /*
  4. **    $Filename: graphics/regions.h $
  5. **    $Release: 1.3 $
  6. **
  7. **    
  8. **
  9. **    (C) Copyright 1985,1986,1987,1988 Commodore-Amiga, Inc.
  10. **        All Rights Reserved
  11. */
  12.  
  13. #ifndef GRAPHICS_GFX_H
  14. #include <graphics/gfx.h>
  15. #endif
  16.  
  17. struct RegionRectangle
  18. {
  19.     struct RegionRectangle *Next,*Prev;
  20.     struct Rectangle bounds;
  21. };
  22.  
  23. struct Region
  24. {
  25.     struct Rectangle bounds;
  26.     struct RegionRectangle *RegionRectangle;
  27. };
  28.  
  29. #endif    /* GRAPHICS_REGIONS_H */
  30.