home *** CD-ROM | disk | FTP | other *** search
/ Fresh Fish 2 / FFMCD02.bin / useful / os-include / graphics / regions.h < prev    next >
C/C++ Source or Header  |  1992-09-24  |  542b  |  34 lines

  1. #ifndef    GRAPHICS_REGIONS_H
  2. #define    GRAPHICS_REGIONS_H
  3. /*
  4. **    $VER: regions.h 39.0 (21.08.91)
  5. **    Includes Release 39.108
  6. **
  7. **
  8. **
  9. **    (C) Copyright 1985-1992 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.