Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/kornelski/7z.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to '7zip/Common/OffsetStream.cpp')
-rwxr-xr-x7zip/Common/OffsetStream.cpp8
1 files changed, 1 insertions, 7 deletions
diff --git a/7zip/Common/OffsetStream.cpp b/7zip/Common/OffsetStream.cpp
index cc93c0db..997ccae2 100755
--- a/7zip/Common/OffsetStream.cpp
+++ b/7zip/Common/OffsetStream.cpp
@@ -12,17 +12,11 @@ HRESULT COffsetOutStream::Init(IOutStream *stream, UInt64 offset)
return _stream->Seek(offset, STREAM_SEEK_SET, NULL);
}
-STDMETHODIMP COffsetOutStream::Write(const void *data, UInt32 size,
- UInt32 *processedSize)
+STDMETHODIMP COffsetOutStream::Write(const void *data, UInt32 size, UInt32 *processedSize)
{
return _stream->Write(data, size, processedSize);
}
-STDMETHODIMP COffsetOutStream::WritePart(const void *data, UInt32 size, UInt32 *processedSize)
-{
- return _stream->WritePart(data, size, processedSize);
-}
-
STDMETHODIMP COffsetOutStream::Seek(Int64 offset, UInt32 seekOrigin,
UInt64 *newPosition)
{