home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Club Amiga de Montreal - CAM
/
CAM_CD_1.iso
/
files
/
502b.lha
/
PCQ_v1.2
/
Include
/
Graphics
/
GFX.i
< prev
next >
Wrap
Text File
|
1991-05-07
|
687b
|
43 lines
{
GFX.i for PCQ Pascal
General graphics include file for application programs
}
const
BITSET = $8000;
BITCLR = 0;
type
Rectangle = record
MinX,MinY : Short;
MaxX,MaxY : Short;
end;
RectanglePtr = ^Rectangle;
Point = record
x,y : Short;
end;
PointPtr = ^Point;
PLANEPTR = Address;
BitMap = record
BytesPerRow : Short;
Rows : Short;
Flags : Byte;
Depth : Byte;
pad : Short;
Planes : Array [0..7] of PLANEPTR;
end;
BitMapPtr = ^BitMap;
Procedure InitBitMap(bm : BitMapPtr; depth : Byte; width, height : Short);
External;
Function RASSIZE(w,h : Short) : Integer; { not a graphics.library call }
External;