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/LockedStream.h')
-rwxr-xr-x7zip/Common/LockedStream.h2
1 files changed, 0 insertions, 2 deletions
diff --git a/7zip/Common/LockedStream.h b/7zip/Common/LockedStream.h
index 90f28330..1c1e1793 100755
--- a/7zip/Common/LockedStream.h
+++ b/7zip/Common/LockedStream.h
@@ -15,7 +15,6 @@ public:
void Init(IInStream *stream)
{ _stream = stream; }
HRESULT Read(UInt64 startPos, void *data, UInt32 size, UInt32 *processedSize);
- HRESULT ReadPart(UInt64 startPos, void *data, UInt32 size, UInt32 *processedSize);
};
class CLockedSequentialInStreamImp:
@@ -34,7 +33,6 @@ public:
MY_UNKNOWN_IMP
STDMETHOD(Read)(void *data, UInt32 size, UInt32 *processedSize);
- STDMETHOD(ReadPart)(void *data, UInt32 size, UInt32 *processedSize);
};
#endif