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/LzmaLib.c | |
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/LzmaLib.c')
-rw-r--r-- | C/LzmaLib.c | 8 |
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 |
2 | 2015-06-13 : Igor Pavlov : Public domain */ | 2 | 2023-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 | ||
9 | MY_STDAPI LzmaCompress(unsigned char *dest, size_t *destLen, const unsigned char *src, size_t srcLen, | 11 | Z7_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 | ||
35 | MY_STDAPI LzmaUncompress(unsigned char *dest, size_t *destLen, const unsigned char *src, size_t *srcLen, | 37 | Z7_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; |