pipes.inc 852 B

1234567891011121314151617181920212223242526272829303132
  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. DOS/go32v2 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. // No pipes under dos, sorry...
  13. Function CreatePipeHandles (Var Inhandle,OutHandle : Longint) : Boolean;
  14. begin
  15. Result := False;
  16. end;
  17. {
  18. $Log$
  19. Revision 1.3 2000-07-22 12:27:48 jonas
  20. * added missing "open comment braces" for the log section
  21. Revision 1.2 2000/07/13 11:32:58 michael
  22. + removed logs
  23. }