home *** CD-ROM | disk | FTP | other *** search
/ Frozen Fish 1: Amiga / FrozenFish-Apr94.iso / bbs / cbm / nduk-v37.lha / V37 / include / graphics / regions.h < prev    next >
C/C++ Source or Header  |  1991-11-27  |  593b  |  36 lines

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