home *** CD-ROM | disk | FTP | other *** search
/ Amiga ISO Collection / AmigaUtilCD2.iso / Programming / Pascal / MAXONPASCAL2.DMS / in.adf / INCLUDE / graphics / regions.h < prev    next >
Encoding:
Text File  |  1994-07-25  |  624 b   |  24 lines

  1. {$if not def GRAPHICS_REGIONS_H} CONST GRAPHICS_REGIONS_H=0;
  2.  
  3. { ********************************************************************
  4.   ** KickPascal-Include-Datei "graphics/regions.h" zu Kickstart 3.0 **
  5.   ******************************************************************** }
  6.  
  7. TYPE p_Region = ^Region;
  8. TYPE p_RegionRectangle = ^RegionRectangle;
  9.  
  10. {$if not def GRAPHICS_GFX_H;incl "graphics/gfx.h";endif}
  11.  
  12. TYPE RegionRectangle = RECORD
  13.  Next   : p_RegionRectangle;
  14.  Prev   : p_RegionRectangle;
  15.  bounds : Rectangle;
  16. END;
  17.  
  18. TYPE Region = RECORD
  19.  bounds          : Rectangle;
  20.  RegionRectangle : p_RegionRectangle;
  21. END;
  22.  
  23. {$endif}
  24.