+ add new functions to dummy/pipes.inc, fixes WinCE building

git-svn-id: trunk@18211 -
This commit is contained in:
florian 2011-08-14 20:54:28 +00:00
parent 3787ed993c
commit ee998def8e

View File

@ -28,3 +28,12 @@ begin
Result := 0;
end;
function TInputPipeStream.GetPosition: Int64;
begin
Result:=FPos;
end;
procedure TInputPipeStream.InvalidSeek;
begin
Raise EPipeSeek.Create (ENoSeekMsg);
end;