mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2026-01-07 15:40:46 +01:00
31 lines
786 B
PHP
31 lines
786 B
PHP
{
|
|
$Id$
|
|
This file is part of the Free Pascal run time library.
|
|
Copyright (c) 1999-2000 by Michael Van Canneyt
|
|
|
|
Linux specific part of pipe stream.
|
|
|
|
See the file COPYING.FPC, included in this distribution,
|
|
for details about the copyright.
|
|
|
|
This program is distributed in the hope that it will be useful,
|
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
|
|
|
|
**********************************************************************}
|
|
|
|
uses linux;
|
|
|
|
Function CreatePipeHandles (Var Inhandle,OutHandle : Longint) : Boolean;
|
|
|
|
begin
|
|
Result := AssignPipe (Inhandle,OutHandle);
|
|
end;
|
|
|
|
{
|
|
$Log$
|
|
Revision 1.5 2000-02-15 21:57:51 sg
|
|
* Added copyright notice and CVS log tags where necessary
|
|
|
|
}
|