summaryrefslogtreecommitdiffstats
path: root/lz4hc.h
diff options
context:
space:
mode:
authorYann Collet <yann.collet.73@gmail.com>2014-06-11 21:02:46 (GMT)
committerYann Collet <yann.collet.73@gmail.com>2014-06-11 21:02:46 (GMT)
commit1c5a6304a2ab4d8b8d3f30cc371df10e537431ae (patch)
treee6b4060deaecd82844e6ccc95be182f3ce7cc1f6 /lz4hc.h
parent0c62103105143eaaf0fa5caae09e65318063a417 (diff)
downloadlz4-1c5a6304a2ab4d8b8d3f30cc371df10e537431ae.zip
lz4-1c5a6304a2ab4d8b8d3f30cc371df10e537431ae.tar.gz
lz4-1c5a6304a2ab4d8b8d3f30cc371df10e537431ae.tar.bz2
CLI : can select compression level > 9
Diffstat (limited to 'lz4hc.h')
-rw-r--r--lz4hc.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/lz4hc.h b/lz4hc.h
index b810978..deb2394 100644
--- a/lz4hc.h
+++ b/lz4hc.h
@@ -104,6 +104,7 @@ They just use the externally allocated memory area instead of allocating their o
/**************************************
Streaming Functions
**************************************/
+/* Note : these streaming functions still follows the older model */
void* LZ4_createHC (const char* inputBuffer);
int LZ4_compressHC_continue (void* LZ4HC_Data, const char* source, char* dest, int inputSize);
int LZ4_compressHC_limitedOutput_continue (void* LZ4HC_Data, const char* source, char* dest, int inputSize, int maxOutputSize);