mirror of
https://github.com/Xevion/easy7zip.git
synced 2025-12-06 05:15:00 -06:00
Fix unused variables.
This commit is contained in:
@@ -20,8 +20,6 @@ struct BrotliStream {
|
||||
ICompressProgressInfo *progress;
|
||||
UInt64 *processedIn;
|
||||
UInt64 *processedOut;
|
||||
CCriticalSection *cs;
|
||||
int flags;
|
||||
};
|
||||
|
||||
extern int BrotliRead(void *Stream, BROTLIMT_Buffer * in);
|
||||
@@ -54,7 +52,6 @@ class CDecoder:public ICompressCoder,
|
||||
CMyComPtr < ISequentialInStream > _inStream;
|
||||
|
||||
DProps _props;
|
||||
CCriticalSection cs;
|
||||
|
||||
UInt64 _processedIn;
|
||||
UInt64 _processedOut;
|
||||
|
||||
@@ -22,8 +22,6 @@ struct LizardStream {
|
||||
ICompressProgressInfo *progress;
|
||||
UInt64 *processedIn;
|
||||
UInt64 *processedOut;
|
||||
CCriticalSection *cs;
|
||||
int flags;
|
||||
};
|
||||
|
||||
extern int LizardRead(void *Stream, LIZARDMT_Buffer * in);
|
||||
@@ -56,7 +54,6 @@ class CDecoder:public ICompressCoder,
|
||||
CMyComPtr < ISequentialInStream > _inStream;
|
||||
|
||||
DProps _props;
|
||||
CCriticalSection cs;
|
||||
|
||||
UInt64 _processedIn;
|
||||
UInt64 _processedOut;
|
||||
|
||||
@@ -20,8 +20,6 @@ struct Lz4Stream {
|
||||
ICompressProgressInfo *progress;
|
||||
UInt64 *processedIn;
|
||||
UInt64 *processedOut;
|
||||
CCriticalSection *cs;
|
||||
int flags;
|
||||
};
|
||||
|
||||
extern int Lz4Read(void *Stream, LZ4MT_Buffer * in);
|
||||
@@ -55,7 +53,6 @@ class CDecoder:public ICompressCoder,
|
||||
CMyComPtr < ISequentialInStream > _inStream;
|
||||
|
||||
DProps _props;
|
||||
CCriticalSection cs;
|
||||
|
||||
UInt64 _processedIn;
|
||||
UInt64 _processedOut;
|
||||
|
||||
@@ -20,8 +20,6 @@ struct Lz5Stream {
|
||||
ICompressProgressInfo *progress;
|
||||
UInt64 *processedIn;
|
||||
UInt64 *processedOut;
|
||||
CCriticalSection *cs;
|
||||
int flags;
|
||||
};
|
||||
|
||||
extern int Lz5Read(void *Stream, LZ5MT_Buffer * in);
|
||||
@@ -55,7 +53,6 @@ class CDecoder:public ICompressCoder,
|
||||
CMyComPtr < ISequentialInStream > _inStream;
|
||||
|
||||
DProps _props;
|
||||
CCriticalSection cs;
|
||||
|
||||
UInt64 _processedIn;
|
||||
UInt64 _processedOut;
|
||||
|
||||
Reference in New Issue
Block a user