[Overview][Constants][Classes][Procedures and functions] |
Function to create a set of pipe handles
Source position: pipes.pp line 46
function CreatePipeHandles( |
var Inhandle: LongInt; |
var OutHandle: LongInt |
):Boolean; |
Inhandle |
|
File handle for reading end of the pipe |
OutHandle |
|
File handle for writing end of the pipe |
Trueif the call was succesul, Falseif not.
CreatePipeHandlesprovides an OS-independent way to create a set of pipe filehandles. These handles are inheritable to child processes. The reading end of the pipe is returned in InHandle, the writing end in OutHandle.
On error, Falseis returned.
|
Create a pair of pipe stream. |