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 'C/MtCoder.h')
-rwxr-xr-xC/MtCoder.h12
1 files changed, 4 insertions, 8 deletions
diff --git a/C/MtCoder.h b/C/MtCoder.h
index fb813d4d..f0f06da2 100755
--- a/C/MtCoder.h
+++ b/C/MtCoder.h
@@ -1,14 +1,12 @@
/* MtCoder.h -- Multi-thread Coder
-2009-03-26 : Igor Pavlov : Public domain */
+2009-11-19 : Igor Pavlov : Public domain */
#ifndef __MT_CODER_H
#define __MT_CODER_H
#include "Threads.h"
-#ifdef __cplusplus
-extern "C" {
-#endif
+EXTERN_C_BEGIN
typedef struct
{
@@ -29,7 +27,7 @@ WRes LoopThread_StopAndWait(CLoopThread *p);
WRes LoopThread_StartSubThread(CLoopThread *p);
WRes LoopThread_WaitSubThread(CLoopThread *p);
-#ifdef COMPRESS_MT
+#ifndef _7ZIP_ST
#define NUM_MT_CODER_THREADS_MAX 32
#else
#define NUM_MT_CODER_THREADS_MAX 1
@@ -95,8 +93,6 @@ void MtCoder_Construct(CMtCoder* p);
void MtCoder_Destruct(CMtCoder* p);
SRes MtCoder_Code(CMtCoder *p);
-#ifdef __cplusplus
-}
-#endif
+EXTERN_C_END
#endif