pipes.inc 781 B

123456789101112131415161718192021222324252627282930
  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. Netware 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. Function CreatePipeHandles (Var Inhandle,OutHandle : Longint) : Boolean;
  13. begin
  14. Result := false; {dont know how to do that with netware clib}
  15. end;
  16. {
  17. $Log$
  18. Revision 1.1 2003-03-25 17:56:19 armin
  19. * first fcl implementation for netware
  20. }