diff options
Diffstat (limited to 'C/LzmaEnc.h')
-rw-r--r-- | C/LzmaEnc.h | 4 |
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 |
2 | 2023-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 | ||
39 | void LzmaEncProps_Init(CLzmaEncProps *p); | 41 | void LzmaEncProps_Init(CLzmaEncProps *p); |