home *** CD-ROM | disk | FTP | other *** search
/ Frozen Fish 1: Amiga / FrozenFish-Apr94.iso / bbs / cbm / os-include.lha / os-include / graphics / regions.h < prev    next >
C/C++ Source or Header  |  1993-10-15  |  540b  |  34 lines

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