Explorar el Código

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

git-svn-id: trunk@18211 -
florian hace 14 años
padre
commit
ee998def8e
Se han modificado 1 ficheros con 9 adiciones y 0 borrados
  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;