summaryrefslogtreecommitdiffstats
path: root/lib/lz4hc.h
diff options
context:
space:
mode:
authorPrzemyslaw Skibinski <inikep@gmail.com>2016-12-09 16:16:35 (GMT)
committerPrzemyslaw Skibinski <inikep@gmail.com>2016-12-09 16:16:35 (GMT)
commit838ed341f94aa68c0bce8ee181e33a87274d2202 (patch)
tree68faf736a427e56671b1f0185fc6bcc2433dd168 /lib/lz4hc.h
parentb3ecc3e3ec768e89eea29248bd8ab0a23ddab2dd (diff)
downloadlz4-838ed341f94aa68c0bce8ee181e33a87274d2202.zip
lz4-838ed341f94aa68c0bce8ee181e33a87274d2202.tar.gz
lz4-838ed341f94aa68c0bce8ee181e33a87274d2202.tar.bz2
fullUpdate as a parameter
Diffstat (limited to 'lib/lz4hc.h')
-rw-r--r--lib/lz4hc.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/lib/lz4hc.h b/lib/lz4hc.h
index 59d912e..a3736f8 100644
--- a/lib/lz4hc.h
+++ b/lib/lz4hc.h
@@ -153,6 +153,7 @@ typedef struct
uint32_t dictLimit; /* below that point, need extDict */
uint32_t lowLimit; /* below that point, no more dict */
uint32_t nextToUpdate; /* index from which to continue dictionary update */
+ uint32_t nextToUpdateBT; /* index from which to continue binary tree update */
uint32_t searchNum; /* only for optimal parser */
uint32_t compressionLevel;
} LZ4HC_CCtx_internal;
@@ -170,6 +171,7 @@ typedef struct
unsigned int dictLimit; /* below that point, need extDict */
unsigned int lowLimit; /* below that point, no more dict */
unsigned int nextToUpdate; /* index from which to continue dictionary update */
+ unsigned int nextToUpdateBT; /* index from which to continue binary tree update */
unsigned int searchNum; /* only for optimal parser */
unsigned int compressionLevel;
} LZ4HC_CCtx_internal;