diff options
Diffstat (limited to 'src/input/InputStream.cxx')
-rw-r--r-- | src/input/InputStream.cxx | 19 |
1 files changed, 3 insertions, 16 deletions
diff --git a/src/input/InputStream.cxx b/src/input/InputStream.cxx index e7307540d..657b9df09 100644 --- a/src/input/InputStream.cxx +++ b/src/input/InputStream.cxx @@ -23,7 +23,6 @@ #include "util/UriUtil.hxx" #include <assert.h> -#include <stdio.h> /* for SEEK_SET */ InputStream::~InputStream() { @@ -75,29 +74,17 @@ InputStream::CheapSeeking() const } bool -InputStream::Seek(gcc_unused offset_type new_offset, gcc_unused int whence, +InputStream::Seek(gcc_unused offset_type new_offset, gcc_unused Error &error) { return false; } bool -InputStream::LockSeek(offset_type _offset, int whence, Error &error) +InputStream::LockSeek(offset_type _offset, Error &error) { const ScopeLock protect(mutex); - return Seek(_offset, whence, error); -} - -bool -InputStream::Rewind(Error &error) -{ - return Seek(0, SEEK_SET, error); -} - -bool -InputStream::LockRewind(Error &error) -{ - return LockSeek(0, SEEK_SET, error); + return Seek(_offset, error); } Tag * |