home *** CD-ROM | disk | FTP | other *** search
- {$if not def GRAPHICS_REGIONS_H} CONST GRAPHICS_REGIONS_H=0;
-
- { ********************************************************************
- ** KickPascal-Include-Datei "graphics/regions.h" zu Kickstart 3.0 **
- ******************************************************************** }
-
- TYPE p_Region = ^Region;
- TYPE p_RegionRectangle = ^RegionRectangle;
-
- {$if not def GRAPHICS_GFX_H;incl "graphics/gfx.h";endif}
-
- TYPE RegionRectangle = RECORD
- Next : p_RegionRectangle;
- Prev : p_RegionRectangle;
- bounds : Rectangle;
- END;
-
- TYPE Region = RECORD
- bounds : Rectangle;
- RegionRectangle : p_RegionRectangle;
- END;
-
- {$endif}
-