aboutsummaryrefslogtreecommitdiff
path: root/C/Lzma2DecMt.h
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--C/Lzma2DecMt.h20
1 files changed, 11 insertions, 9 deletions
diff --git a/C/Lzma2DecMt.h b/C/Lzma2DecMt.h
index 7791c31..93a5cd5 100644
--- a/C/Lzma2DecMt.h
+++ b/C/Lzma2DecMt.h
@@ -1,8 +1,8 @@
1/* Lzma2DecMt.h -- LZMA2 Decoder Multi-thread 1/* Lzma2DecMt.h -- LZMA2 Decoder Multi-thread
22018-02-17 : Igor Pavlov : Public domain */ 22023-04-13 : Igor Pavlov : Public domain */
3 3
4#ifndef __LZMA2_DEC_MT_H 4#ifndef ZIP7_INC_LZMA2_DEC_MT_H
5#define __LZMA2_DEC_MT_H 5#define ZIP7_INC_LZMA2_DEC_MT_H
6 6
7#include "7zTypes.h" 7#include "7zTypes.h"
8 8
@@ -13,7 +13,7 @@ typedef struct
13 size_t inBufSize_ST; 13 size_t inBufSize_ST;
14 size_t outStep_ST; 14 size_t outStep_ST;
15 15
16 #ifndef _7ZIP_ST 16 #ifndef Z7_ST
17 unsigned numThreads; 17 unsigned numThreads;
18 size_t inBufSize_MT; 18 size_t inBufSize_MT;
19 size_t outBlockMax; 19 size_t outBlockMax;
@@ -38,7 +38,9 @@ SRes:
38 SZ_ERROR_THREAD - error in multithreading functions (only for Mt version) 38 SZ_ERROR_THREAD - error in multithreading functions (only for Mt version)
39*/ 39*/
40 40
41typedef void * CLzma2DecMtHandle; 41typedef struct CLzma2DecMt CLzma2DecMt;
42typedef CLzma2DecMt * CLzma2DecMtHandle;
43// Z7_DECLARE_HANDLE(CLzma2DecMtHandle)
42 44
43CLzma2DecMtHandle Lzma2DecMt_Create(ISzAllocPtr alloc, ISzAllocPtr allocMid); 45CLzma2DecMtHandle Lzma2DecMt_Create(ISzAllocPtr alloc, ISzAllocPtr allocMid);
44void Lzma2DecMt_Destroy(CLzma2DecMtHandle p); 46void Lzma2DecMt_Destroy(CLzma2DecMtHandle p);
@@ -46,11 +48,11 @@ void Lzma2DecMt_Destroy(CLzma2DecMtHandle p);
46SRes Lzma2DecMt_Decode(CLzma2DecMtHandle p, 48SRes Lzma2DecMt_Decode(CLzma2DecMtHandle p,
47 Byte prop, 49 Byte prop,
48 const CLzma2DecMtProps *props, 50 const CLzma2DecMtProps *props,
49 ISeqOutStream *outStream, 51 ISeqOutStreamPtr outStream,
50 const UInt64 *outDataSize, // NULL means undefined 52 const UInt64 *outDataSize, // NULL means undefined
51 int finishMode, // 0 - partial unpacking is allowed, 1 - if lzma2 stream must be finished 53 int finishMode, // 0 - partial unpacking is allowed, 1 - if lzma2 stream must be finished
52 // Byte *outBuf, size_t *outBufSize, 54 // Byte *outBuf, size_t *outBufSize,
53 ISeqInStream *inStream, 55 ISeqInStreamPtr inStream,
54 // const Byte *inData, size_t inDataSize, 56 // const Byte *inData, size_t inDataSize,
55 57
56 // out variables: 58 // out variables:
@@ -58,7 +60,7 @@ SRes Lzma2DecMt_Decode(CLzma2DecMtHandle p,
58 int *isMT, /* out: (*isMT == 0), if single thread decoding was used */ 60 int *isMT, /* out: (*isMT == 0), if single thread decoding was used */
59 61
60 // UInt64 *outProcessed, 62 // UInt64 *outProcessed,
61 ICompressProgress *progress); 63 ICompressProgressPtr progress);
62 64
63 65
64/* ---------- Read from CLzma2DecMtHandle Interface ---------- */ 66/* ---------- Read from CLzma2DecMtHandle Interface ---------- */
@@ -67,7 +69,7 @@ SRes Lzma2DecMt_Init(CLzma2DecMtHandle pp,
67 Byte prop, 69 Byte prop,
68 const CLzma2DecMtProps *props, 70 const CLzma2DecMtProps *props,
69 const UInt64 *outDataSize, int finishMode, 71 const UInt64 *outDataSize, int finishMode,
70 ISeqInStream *inStream); 72 ISeqInStreamPtr inStream);
71 73
72SRes Lzma2DecMt_Read(CLzma2DecMtHandle pp, 74SRes Lzma2DecMt_Read(CLzma2DecMtHandle pp,
73 Byte *data, size_t *outSize, 75 Byte *data, size_t *outSize,