pipes.inc 1.0 KB

12345678910111213141516171819202122232425262728293031323334353637383940
  1. {
  2. $Id$
  3. This file is part of the Free Pascal run time library.
  4. Copyright (c) 1999-2000 by Michael Van Canneyt
  5. Linux specific part of pipe stream.
  6. See the file COPYING.FPC, included in this distribution,
  7. for details about the copyright.
  8. This program is distributed in the hope that it will be useful,
  9. but WITHOUT ANY WARRANTY; without even the implied warranty of
  10. MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
  11. **********************************************************************}
  12. uses linux;
  13. Function CreatePipeHandles (Var Inhandle,OutHandle : Longint) : Boolean;
  14. begin
  15. Result := AssignPipe (Inhandle,OutHandle);
  16. end;
  17. {
  18. $Log$
  19. Revision 1.2 2000-10-26 22:30:21 peter
  20. * freebsd update
  21. * classes.rst
  22. Revision 1.1.2.1 2000/10/25 12:36:24 marco
  23. * Split up Freebsd/Unix/Linux for Fixes FCL
  24. Revision 1.1 2000/07/13 06:31:32 michael
  25. + Initial import
  26. Revision 1.5 2000/02/15 21:57:51 sg
  27. * Added copyright notice and CVS log tags where necessary
  28. }