aboutsummaryrefslogtreecommitdiff
path: root/C/Lzma2Dec.h
diff options
context:
space:
mode:
Diffstat (limited to 'C/Lzma2Dec.h')
-rw-r--r--C/Lzma2Dec.h15
1 files changed, 8 insertions, 7 deletions
diff --git a/C/Lzma2Dec.h b/C/Lzma2Dec.h
index b8ddeac..1f5233a 100644
--- a/C/Lzma2Dec.h
+++ b/C/Lzma2Dec.h
@@ -1,8 +1,8 @@
1/* Lzma2Dec.h -- LZMA2 Decoder 1/* Lzma2Dec.h -- LZMA2 Decoder
22018-02-19 : Igor Pavlov : Public domain */ 22023-03-03 : Igor Pavlov : Public domain */
3 3
4#ifndef __LZMA2_DEC_H 4#ifndef ZIP7_INC_LZMA2_DEC_H
5#define __LZMA2_DEC_H 5#define ZIP7_INC_LZMA2_DEC_H
6 6
7#include "LzmaDec.h" 7#include "LzmaDec.h"
8 8
@@ -22,9 +22,10 @@ typedef struct
22 CLzmaDec decoder; 22 CLzmaDec decoder;
23} CLzma2Dec; 23} CLzma2Dec;
24 24
25#define Lzma2Dec_Construct(p) LzmaDec_Construct(&(p)->decoder) 25#define Lzma2Dec_CONSTRUCT(p) LzmaDec_CONSTRUCT(&(p)->decoder)
26#define Lzma2Dec_FreeProbs(p, alloc) LzmaDec_FreeProbs(&(p)->decoder, alloc) 26#define Lzma2Dec_Construct(p) Lzma2Dec_CONSTRUCT(p)
27#define Lzma2Dec_Free(p, alloc) LzmaDec_Free(&(p)->decoder, alloc) 27#define Lzma2Dec_FreeProbs(p, alloc) LzmaDec_FreeProbs(&(p)->decoder, alloc)
28#define Lzma2Dec_Free(p, alloc) LzmaDec_Free(&(p)->decoder, alloc)
28 29
29SRes Lzma2Dec_AllocateProbs(CLzma2Dec *p, Byte prop, ISzAllocPtr alloc); 30SRes Lzma2Dec_AllocateProbs(CLzma2Dec *p, Byte prop, ISzAllocPtr alloc);
30SRes Lzma2Dec_Allocate(CLzma2Dec *p, Byte prop, ISzAllocPtr alloc); 31SRes Lzma2Dec_Allocate(CLzma2Dec *p, Byte prop, ISzAllocPtr alloc);
@@ -90,7 +91,7 @@ Lzma2Dec_GetUnpackExtra() returns the value that shows
90 at current input positon. 91 at current input positon.
91*/ 92*/
92 93
93#define Lzma2Dec_GetUnpackExtra(p) ((p)->isExtraMode ? (p)->unpackSize : 0); 94#define Lzma2Dec_GetUnpackExtra(p) ((p)->isExtraMode ? (p)->unpackSize : 0)
94 95
95 96
96/* ---------- One Call Interface ---------- */ 97/* ---------- One Call Interface ---------- */