mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-04-05 17:08:01 +02:00
* remove Pipes
git-svn-id: trunk@4388 -
This commit is contained in:
parent
a704cbf048
commit
ac9df7be0d
@ -1,7 +1,7 @@
|
||||
{$mode objfpc}{$H+}
|
||||
|
||||
uses
|
||||
Classes, SysUtils, Pipes;
|
||||
Classes, SysUtils;
|
||||
|
||||
var
|
||||
err : boolean;
|
||||
@ -18,10 +18,10 @@ begin
|
||||
end;
|
||||
|
||||
var
|
||||
InputStream: TInputPipeStream;
|
||||
InputStream: TMemoryStream;
|
||||
begin
|
||||
err:=true;
|
||||
InputStream:=TInputPipeStream.Create(0);
|
||||
InputStream:=TMemoryStream.Create;
|
||||
Proc(InputStream);
|
||||
if err then
|
||||
halt(1);
|
||||
|
Loading…
Reference in New Issue
Block a user