aboutsummaryrefslogtreecommitdiff
path: root/C/LzmaDec.h
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--C/LzmaDec.h17
1 files changed, 9 insertions, 8 deletions
diff --git a/C/LzmaDec.h b/C/LzmaDec.h
index 6f12962..b0ce28f 100644
--- a/C/LzmaDec.h
+++ b/C/LzmaDec.h
@@ -1,19 +1,19 @@
1/* LzmaDec.h -- LZMA Decoder 1/* LzmaDec.h -- LZMA Decoder
22020-03-19 : Igor Pavlov : Public domain */ 22023-04-02 : Igor Pavlov : Public domain */
3 3
4#ifndef __LZMA_DEC_H 4#ifndef ZIP7_INC_LZMA_DEC_H
5#define __LZMA_DEC_H 5#define ZIP7_INC_LZMA_DEC_H
6 6
7#include "7zTypes.h" 7#include "7zTypes.h"
8 8
9EXTERN_C_BEGIN 9EXTERN_C_BEGIN
10 10
11/* #define _LZMA_PROB32 */ 11/* #define Z7_LZMA_PROB32 */
12/* _LZMA_PROB32 can increase the speed on some CPUs, 12/* Z7_LZMA_PROB32 can increase the speed on some CPUs,
13 but memory usage for CLzmaDec::probs will be doubled in that case */ 13 but memory usage for CLzmaDec::probs will be doubled in that case */
14 14
15typedef 15typedef
16#ifdef _LZMA_PROB32 16#ifdef Z7_LZMA_PROB32
17 UInt32 17 UInt32
18#else 18#else
19 UInt16 19 UInt16
@@ -25,7 +25,7 @@ typedef
25 25
26#define LZMA_PROPS_SIZE 5 26#define LZMA_PROPS_SIZE 5
27 27
28typedef struct _CLzmaProps 28typedef struct
29{ 29{
30 Byte lc; 30 Byte lc;
31 Byte lp; 31 Byte lp;
@@ -73,7 +73,8 @@ typedef struct
73 Byte tempBuf[LZMA_REQUIRED_INPUT_MAX]; 73 Byte tempBuf[LZMA_REQUIRED_INPUT_MAX];
74} CLzmaDec; 74} CLzmaDec;
75 75
76#define LzmaDec_Construct(p) { (p)->dic = NULL; (p)->probs = NULL; } 76#define LzmaDec_CONSTRUCT(p) { (p)->dic = NULL; (p)->probs = NULL; }
77#define LzmaDec_Construct(p) LzmaDec_CONSTRUCT(p)
77 78
78void LzmaDec_Init(CLzmaDec *p); 79void LzmaDec_Init(CLzmaDec *p);
79 80