home *** CD-ROM | disk | FTP | other *** search
/ Amiga ISO Collection / AmigaUtilCD2.iso / Programming / C / BC_DICE2.DMS / in.adf / INCLUDE / graphics / regions.h < prev    next >
Encoding:
C/C++ Source or Header  |  1995-01-10  |  553 b   |  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 
  36.