aboutsummaryrefslogtreecommitdiff
path: root/C/LzmaEnc.h
diff options
context:
space:
mode:
authorIgor Pavlov <87184205+ip7z@users.noreply.github.com>2025-07-05 00:00:00 +0000
committerIgor Pavlov <87184205+ip7z@users.noreply.github.com>2025-07-05 19:27:33 +0500
commit395149956d696e6e3099d8b76d797437f94a6942 (patch)
tree6ed5013a637078ae2dfdc4acf1ad93bf29cea356 /C/LzmaEnc.h
parente5431fa6f5505e385c6f9367260717e9c47dc2ee (diff)
download7zip-25.00.tar.gz
7zip-25.00.tar.bz2
7zip-25.00.zip
25.0025.00
Diffstat (limited to 'C/LzmaEnc.h')
-rw-r--r--C/LzmaEnc.h4
1 files changed, 3 insertions, 1 deletions
diff --git a/C/LzmaEnc.h b/C/LzmaEnc.h
index 9f8039a..3feb5b4 100644
--- a/C/LzmaEnc.h
+++ b/C/LzmaEnc.h
@@ -1,5 +1,5 @@
1/* LzmaEnc.h -- LZMA Encoder 1/* LzmaEnc.h -- LZMA Encoder
22023-04-13 : Igor Pavlov : Public domain */ 2: Igor Pavlov : Public domain */
3 3
4#ifndef ZIP7_INC_LZMA_ENC_H 4#ifndef ZIP7_INC_LZMA_ENC_H
5#define ZIP7_INC_LZMA_ENC_H 5#define ZIP7_INC_LZMA_ENC_H
@@ -29,11 +29,13 @@ typedef struct
29 int numThreads; /* 1 or 2, default = 2 */ 29 int numThreads; /* 1 or 2, default = 2 */
30 30
31 // int _pad; 31 // int _pad;
32 Int32 affinityGroup;
32 33
33 UInt64 reduceSize; /* estimated size of data that will be compressed. default = (UInt64)(Int64)-1. 34 UInt64 reduceSize; /* estimated size of data that will be compressed. default = (UInt64)(Int64)-1.
34 Encoder uses this value to reduce dictionary size */ 35 Encoder uses this value to reduce dictionary size */
35 36
36 UInt64 affinity; 37 UInt64 affinity;
38 UInt64 affinityInGroup;
37} CLzmaEncProps; 39} CLzmaEncProps;
38 40
39void LzmaEncProps_Init(CLzmaEncProps *p); 41void LzmaEncProps_Init(CLzmaEncProps *p);