home *** CD-ROM | disk | FTP | other *** search
- {
- 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;
-