123456789101112131415161718192021222324252627282930313233343536 |
- {
- $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
- {$ifdef ver1_0}
- Linux
- {$else}
- Unix
- {$endif}
- ;
- Function CreatePipeHandles (Var Inhandle,OutHandle : Longint) : Boolean;
- begin
- Result := AssignPipe (Inhandle,OutHandle);
- end;
- {
- $Log$
- Revision 1.5 2002-09-07 15:15:29 peter
- * old logs removed and tabs fixed
- }
|