home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Frozen Fish 1: Amiga
/
FrozenFish-Apr94.iso
/
bbs
/
alib
/
d3xx
/
d339
/
pcq.lha
/
PCQ
/
Include
/
ConsoleIO.i
< prev
next >
Wrap
Text File
|
1990-03-19
|
823b
|
31 lines
{
ConsoleIO.i
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. The last few routines partially mimic
similar routines from Turbo Pascal. See ConsoleTest.p for an example of
using these routines.
}
{$I "Include/Exec.i"}
{$I "Include/Ports.i"}
{$I "Include/ExecIO.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;