summaryrefslogtreecommitdiffstatshomepage
path: root/src/lib/lib7z/Lzma2Dec.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/lib/lib7z/Lzma2Dec.h')
-rw-r--r--src/lib/lib7z/Lzma2Dec.h22
1 files changed, 11 insertions, 11 deletions
diff --git a/src/lib/lib7z/Lzma2Dec.h b/src/lib/lib7z/Lzma2Dec.h
index 6bc07bbc185..d922f9be6b3 100644
--- a/src/lib/lib7z/Lzma2Dec.h
+++ b/src/lib/lib7z/Lzma2Dec.h
@@ -14,14 +14,14 @@ extern "C" {
typedef struct
{
- CLzmaDec decoder;
- UInt32 packSize;
- UInt32 unpackSize;
- int state;
- Byte control;
- Bool needInitDic;
- Bool needInitState;
- Bool needInitProp;
+ CLzmaDec decoder;
+ UInt32 packSize;
+ UInt32 unpackSize;
+ int state;
+ Byte control;
+ Bool needInitDic;
+ Bool needInitState;
+ Bool needInitProp;
} CLzma2Dec;
#define Lzma2Dec_Construct(p) LzmaDec_Construct(&(p)->decoder)
@@ -49,10 +49,10 @@ Returns:
*/
SRes Lzma2Dec_DecodeToDic(CLzma2Dec *p, SizeT dicLimit,
- const Byte *src, SizeT *srcLen, ELzmaFinishMode finishMode, ELzmaStatus *status);
+ const Byte *src, SizeT *srcLen, ELzmaFinishMode finishMode, ELzmaStatus *status);
SRes Lzma2Dec_DecodeToBuf(CLzma2Dec *p, Byte *dest, SizeT *destLen,
- const Byte *src, SizeT *srcLen, ELzmaFinishMode finishMode, ELzmaStatus *status);
+ const Byte *src, SizeT *srcLen, ELzmaFinishMode finishMode, ELzmaStatus *status);
/* ---------- One Call Interface ---------- */
@@ -75,7 +75,7 @@ Returns:
*/
SRes Lzma2Decode(Byte *dest, SizeT *destLen, const Byte *src, SizeT *srcLen,
- Byte prop, ELzmaFinishMode finishMode, ELzmaStatus *status, ISzAlloc *alloc);
+ Byte prop, ELzmaFinishMode finishMode, ELzmaStatus *status, ISzAlloc *alloc);
#ifdef __cplusplus
}