aboutsummaryrefslogtreecommitdiff
path: root/CPP/7zip/Archive/7z/7zDecode.h
diff options
context:
space:
mode:
Diffstat (limited to 'CPP/7zip/Archive/7z/7zDecode.h')
-rw-r--r--CPP/7zip/Archive/7z/7zDecode.h15
1 files changed, 9 insertions, 6 deletions
diff --git a/CPP/7zip/Archive/7z/7zDecode.h b/CPP/7zip/Archive/7z/7zDecode.h
index eeb146e..ee9d9c2 100644
--- a/CPP/7zip/Archive/7z/7zDecode.h
+++ b/CPP/7zip/Archive/7z/7zDecode.h
@@ -1,7 +1,7 @@
1// 7zDecode.h 1// 7zDecode.h
2 2
3#ifndef __7Z_DECODE_H 3#ifndef ZIP7_INC_7Z_DECODE_H
4#define __7Z_DECODE_H 4#define ZIP7_INC_7Z_DECODE_H
5 5
6#include "../Common/CoderMixer2.h" 6#include "../Common/CoderMixer2.h"
7 7
@@ -24,10 +24,13 @@ struct CBindInfoEx: public NCoderMixer2::CBindInfo
24class CDecoder 24class CDecoder
25{ 25{
26 bool _bindInfoPrev_Defined; 26 bool _bindInfoPrev_Defined;
27 #ifdef USE_MIXER_ST
28 #ifdef USE_MIXER_MT
29 bool _useMixerMT;
30 #endif
31 #endif
27 CBindInfoEx _bindInfoPrev; 32 CBindInfoEx _bindInfoPrev;
28 33
29 bool _useMixerMT;
30
31 #ifdef USE_MIXER_ST 34 #ifdef USE_MIXER_ST
32 NCoderMixer2::CMixerST *_mixerST; 35 NCoderMixer2::CMixerST *_mixerST;
33 #endif 36 #endif
@@ -57,9 +60,9 @@ public:
57 , ISequentialInStream **inStreamMainRes 60 , ISequentialInStream **inStreamMainRes
58 , bool &dataAfterEnd_Error 61 , bool &dataAfterEnd_Error
59 62
60 _7Z_DECODER_CRYPRO_VARS_DECL 63 Z7_7Z_DECODER_CRYPRO_VARS_DECL
61 64
62 #if !defined(_7ZIP_ST) 65 #if !defined(Z7_ST)
63 , bool mtMode, UInt32 numThreads, UInt64 memUsage 66 , bool mtMode, UInt32 numThreads, UInt64 memUsage
64 #endif 67 #endif
65 ); 68 );