home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
The Fred Fish Collection 1.5
/
ffcollection-1-5-1992-11.iso
/
ff_disks
/
300-399
/
ff339.lzh
/
PCQ
/
Include
/
ExecIOUtils.i
< prev
next >
Wrap
Text File
|
1990-03-19
|
748b
|
29 lines
{
ExecIOUtils.i
This file has the NewList, CreatePort, DeletePort, CreateStdIO,
and DeleteStdIO. You never know when you'll need them.... Note that
the Create functions do _not_ use PCQ's memory routines, and thus if
you fail to Delete them, the memory will be lost to the system.
The object code for these routines is in PCQ.lib, and the
source is in Runtime/Extras.
}
{$I "Include/Exec.i"}
{$I "Include/ExecIO.i"}
Procedure NewList(var NList : List);
External;
Function CreatePort(Name : String; pri : Integer) : MsgPortPtr;
External;
Procedure DeletePort(port : MsgPortPtr);
External;
Function CreateStdIO(ioReplyPort : MsgPortPtr) : IOStdReqPtr;
External;
Procedure DeleteStdIO(Request : IOStdReqPtr);
External;