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 'CPP/7zip/Compress/BZip2Decoder.h')
-rwxr-xr-xCPP/7zip/Compress/BZip2Decoder.h16
1 files changed, 8 insertions, 8 deletions
diff --git a/CPP/7zip/Compress/BZip2Decoder.h b/CPP/7zip/Compress/BZip2Decoder.h
index 39520ee3..d02b70a8 100755
--- a/CPP/7zip/Compress/BZip2Decoder.h
+++ b/CPP/7zip/Compress/BZip2Decoder.h
@@ -5,7 +5,7 @@
#include "../../Common/MyCom.h"
-#ifdef COMPRESS_BZIP2_MT
+#ifndef _7ZIP_ST
#include "../../Windows/Synchronization.h"
#include "../../Windows/Thread.h"
#endif
@@ -31,7 +31,7 @@ struct CState
{
UInt32 *Counters;
- #ifdef COMPRESS_BZIP2_MT
+ #ifndef _7ZIP_ST
CDecoder *Decoder;
NWindows::CThread Thread;
@@ -59,7 +59,7 @@ struct CState
class CDecoder :
public ICompressCoder,
- #ifdef COMPRESS_BZIP2_MT
+ #ifndef _7ZIP_ST
public ICompressSetCoderMt,
#endif
public CMyUnknownImp
@@ -104,9 +104,9 @@ private:
public:
CBZip2CombinedCrc CombinedCrc;
-
- #ifdef COMPRESS_BZIP2_MT
ICompressProgressInfo *Progress;
+
+ #ifndef _7ZIP_ST
CState *m_States;
UInt32 m_NumThreadsPrev;
@@ -145,8 +145,8 @@ public:
m_OutStream.ReleaseStream();
}
- MY_QUERYINTERFACE_BEGIN
- #ifdef COMPRESS_BZIP2_MT
+ MY_QUERYINTERFACE_BEGIN2(ICompressCoder)
+ #ifndef _7ZIP_ST
MY_QUERYINTERFACE_ENTRY(ICompressSetCoderMt)
#endif
@@ -163,7 +163,7 @@ public:
HRESULT CodeResume(ISequentialOutStream *outStream, bool &isBZ, ICompressProgressInfo *progress);
UInt64 GetInputProcessedSize() const { return m_InStream.GetProcessedSize(); }
- #ifdef COMPRESS_BZIP2_MT
+ #ifndef _7ZIP_ST
STDMETHOD(SetNumberOfThreads)(UInt32 numThreads);
#endif
};