diff options
author | Igor Pavlov <87184205+ip7z@users.noreply.github.com> | 2023-06-21 00:00:00 +0000 |
---|---|---|
committer | Igor Pavlov <87184205+ip7z@users.noreply.github.com> | 2023-12-17 14:59:19 +0500 |
commit | 5b39dc76f1bc82f941d5c800ab9f34407a06b53a (patch) | |
tree | fe5e17420300b715021a76328444088d32047963 /C/Lzma2Dec.h | |
parent | 93be7d4abfd4233228f58ee1fbbcd76d91be66a4 (diff) | |
download | 7zip-23.01.tar.gz 7zip-23.01.tar.bz2 7zip-23.01.zip |
23.0123.01
Diffstat (limited to 'C/Lzma2Dec.h')
-rw-r--r-- | C/Lzma2Dec.h | 15 |
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 |
2 | 2018-02-19 : Igor Pavlov : Public domain */ | 2 | 2023-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 | ||
29 | SRes Lzma2Dec_AllocateProbs(CLzma2Dec *p, Byte prop, ISzAllocPtr alloc); | 30 | SRes Lzma2Dec_AllocateProbs(CLzma2Dec *p, Byte prop, ISzAllocPtr alloc); |
30 | SRes Lzma2Dec_Allocate(CLzma2Dec *p, Byte prop, ISzAllocPtr alloc); | 31 | SRes 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 ---------- */ |