home *** CD-ROM | disk | FTP | other *** search
- {$if not def GRAPHICS_GFX_H} CONST GRAPHICS_GFX_H=0;
-
- { ****************************************************************
- ** KickPascal-Include-Datei "graphics/gfx.h" zu Kickstart 3.0 **
- **************************************************************** }
-
- TYPE p_Rectangle = ^Rectangle;
- TYPE p_Rect32 = ^Rect32;
- TYPE p_tPoint = ^tPoint;
- TYPE p_Point = ^Point;
- TYPE PLANEPTR = Ptr;
- TYPE p_BitMap = ^BitMap;
-
- CONST
- BITSET = $8000;
- BITCLR = 0;
-
- TYPE Rectangle = RECORD
- MinX,MinY : Integer;
- MaxX,MaxY : Integer;
- END;
-
- TYPE Rect32 = RECORD
- MinX,MinY : LongInt;
- MaxX,MaxY : LongInt;
- END;
-
- TYPE tPoint = RECORD
- x,y : Integer;
- END;
-
- TYPE Point = tPoint;
-
- TYPE BitMap = RECORD
- BytesPerRow : Word;
- Rows : Word;
- Flags : Byte;
- Depth : Byte;
- pad : Word;
- Planes : ARRAY[0..7] OF PLANEPTR;
- END;
-
- {$endif}
-