summaryrefslogtreecommitdiffstatshomepage
path: root/src/lib/lib7z/LzmaLib.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/lib/lib7z/LzmaLib.h')
-rw-r--r--src/lib/lib7z/LzmaLib.h20
1 files changed, 10 insertions, 10 deletions
diff --git a/src/lib/lib7z/LzmaLib.h b/src/lib/lib7z/LzmaLib.h
index 2a3efe161c1..719d8efd13f 100644
--- a/src/lib/lib7z/LzmaLib.h
+++ b/src/lib/lib7z/LzmaLib.h
@@ -96,15 +96,15 @@ Returns:
*/
MY_STDAPI LzmaCompress(unsigned char *dest, size_t *destLen, const unsigned char *src, size_t srcLen,
- unsigned char *outProps, size_t *outPropsSize, /* *outPropsSize must be = 5 */
- int level, /* 0 <= level <= 9, default = 5 */
- unsigned dictSize, /* default = (1 << 24) */
- int lc, /* 0 <= lc <= 8, default = 3 */
- int lp, /* 0 <= lp <= 4, default = 0 */
- int pb, /* 0 <= pb <= 4, default = 2 */
- int fb, /* 5 <= fb <= 273, default = 32 */
- int numThreads /* 1 or 2, default = 2 */
- );
+ unsigned char *outProps, size_t *outPropsSize, /* *outPropsSize must be = 5 */
+ int level, /* 0 <= level <= 9, default = 5 */
+ unsigned dictSize, /* default = (1 << 24) */
+ int lc, /* 0 <= lc <= 8, default = 3 */
+ int lp, /* 0 <= lp <= 4, default = 0 */
+ int pb, /* 0 <= pb <= 4, default = 2 */
+ int fb, /* 5 <= fb <= 273, default = 32 */
+ int numThreads /* 1 or 2, default = 2 */
+ );
/*
LzmaUncompress
@@ -126,7 +126,7 @@ Returns:
*/
MY_STDAPI LzmaUncompress(unsigned char *dest, size_t *destLen, const unsigned char *src, SizeT *srcLen,
- const unsigned char *props, size_t propsSize);
+ const unsigned char *props, size_t propsSize);
#ifdef __cplusplus
}