]> git.mxchange.org Git - core.git/blobdiff - inc/classes/interfaces/io/pointer/io/class_InputOutputPointer.php
Introduced interface Pointer, valid() is now used.
[core.git] / inc / classes / interfaces / io / pointer / io / class_InputOutputPointer.php
index 529dbe6f1ad36a22677511d7fbbdc2b7ba6fecc1..93846ff7311813ecb80372d66a6b8c663b0c4256 100644 (file)
@@ -25,18 +25,9 @@ interface InputOutputPointer extends InputPointer, OutputPointer {
        /**
         * Rewinds to the beginning of the file
         *
-        * @return      void
+        * @return      $status         Status of this operation
         */
        function rewind ();
-
-       /**
-        * Seeks to given position
-        *
-        * @param       $seekPosition   Seek position in file
-        * @param       $whence                 "Seek mode" (see http://de.php.net/fseek)
-        * @return      void
-        */
-       function seek ($seekPosition, $whence = SEEK_SET);
 }
 
 // [EOF]