aboutsummaryrefslogtreecommitdiff
path: root/C/LzmaLib.c
diff options
context:
space:
mode:
Diffstat (limited to 'C/LzmaLib.c')
-rw-r--r--C/LzmaLib.c8
1 files changed, 5 insertions, 3 deletions
diff --git a/C/LzmaLib.c b/C/LzmaLib.c
index 706e9e5..785e884 100644
--- a/C/LzmaLib.c
+++ b/C/LzmaLib.c
@@ -1,12 +1,14 @@
1/* LzmaLib.c -- LZMA library wrapper 1/* LzmaLib.c -- LZMA library wrapper
22015-06-13 : Igor Pavlov : Public domain */ 22023-04-02 : Igor Pavlov : Public domain */
3
4#include "Precomp.h"
3 5
4#include "Alloc.h" 6#include "Alloc.h"
5#include "LzmaDec.h" 7#include "LzmaDec.h"
6#include "LzmaEnc.h" 8#include "LzmaEnc.h"
7#include "LzmaLib.h" 9#include "LzmaLib.h"
8 10
9MY_STDAPI LzmaCompress(unsigned char *dest, size_t *destLen, const unsigned char *src, size_t srcLen, 11Z7_STDAPI LzmaCompress(unsigned char *dest, size_t *destLen, const unsigned char *src, size_t srcLen,
10 unsigned char *outProps, size_t *outPropsSize, 12 unsigned char *outProps, size_t *outPropsSize,
11 int level, /* 0 <= level <= 9, default = 5 */ 13 int level, /* 0 <= level <= 9, default = 5 */
12 unsigned dictSize, /* use (1 << N) or (3 << N). 4 KB < dictSize <= 128 MB */ 14 unsigned dictSize, /* use (1 << N) or (3 << N). 4 KB < dictSize <= 128 MB */
@@ -32,7 +34,7 @@ MY_STDAPI LzmaCompress(unsigned char *dest, size_t *destLen, const unsigned char
32} 34}
33 35
34 36
35MY_STDAPI LzmaUncompress(unsigned char *dest, size_t *destLen, const unsigned char *src, size_t *srcLen, 37Z7_STDAPI LzmaUncompress(unsigned char *dest, size_t *destLen, const unsigned char *src, size_t *srcLen,
36 const unsigned char *props, size_t propsSize) 38 const unsigned char *props, size_t propsSize)
37{ 39{
38 ELzmaStatus status; 40 ELzmaStatus status;