home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Club Amiga de Montreal - CAM
/
CAM_CD_1.iso
/
files
/
502b.lha
/
PCQ_v1.2
/
Include
/
Utils
/
ConsoleIO.i
< prev
next >
Wrap
Text File
|
1991-05-07
|
807b
|
31 lines
{
ConsoleIO.i of PCQ Pascal
This file implements all the normal console.device stuff for
dealing with windows. The first set of routines is standard Amiga stuff,
culled from the ROM Kernel Manual. See ConsoleTest.p for an example of
using these routines.
The source code for these routines is under Runtime/Extras
}
{$I "Include:Exec/IO.i"}
{$I "Include:Exec/Ports.i"}
Procedure ConPutChar(Request : IOStdReqPtr; Character : Char);
External;
Procedure ConWrite(Request : IOStdReqPtr; Str : String; length : Integer);
External;
Procedure ConPutStr(Request : IOStdReqPtr; Str : String);
External;
Procedure QueueRead(Request : IOStdReqPtr; Where : String);
External;
Function ConGetChar(consolePort : MsgPortPtr; Request : IOStdReqPtr;
WhereTo : String) : Char;
External;