Browse Source

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

git-svn-id: trunk@18211 -
florian 14 years ago
parent
commit
ee998def8e
1 changed files with 9 additions and 0 deletions
  1. 9 0
      packages/fcl-process/src/dummy/pipes.inc

+ 9 - 0
packages/fcl-process/src/dummy/pipes.inc

@@ -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;