aboutsummaryrefslogtreecommitdiff
path: root/CPP/7zip/Archive/7z/7zDecode.h
diff options
context:
space:
mode:
authorIgor Pavlov <87184205+ip7z@users.noreply.github.com>2023-06-21 00:00:00 +0000
committerIgor Pavlov <87184205+ip7z@users.noreply.github.com>2023-12-17 14:59:19 +0500
commit5b39dc76f1bc82f941d5c800ab9f34407a06b53a (patch)
treefe5e17420300b715021a76328444088d32047963 /CPP/7zip/Archive/7z/7zDecode.h
parent93be7d4abfd4233228f58ee1fbbcd76d91be66a4 (diff)
download7zip-23.01.tar.gz
7zip-23.01.tar.bz2
7zip-23.01.zip
23.0123.01
Diffstat (limited to '')
-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 );