renamed to ZWRAP_deflateReset_keepDict

This commit is contained in:
inikep
2016-09-27 17:27:43 +02:00
parent 856f91ebef
commit 20859afb4c
3 changed files with 11 additions and 11 deletions
+2 -2
View File
@@ -48,7 +48,7 @@ int ZWRAP_setPledgedSrcSize(z_streamp strm, unsigned long long pledgedSrcSize);
/* Similar to deflateReset but preserves dictionary set using deflateSetDictionary.
It should improve compression speed because there will be less calls to deflateSetDictionary
When using zlib compression this method redirects to deflateReset. */
int ZWRAP_deflateResetWithoutDict(z_streamp strm);
int ZWRAP_deflateReset_keepDict(z_streamp strm);
@@ -67,7 +67,7 @@ int ZWRAP_isUsingZSTDdecompression(z_streamp strm);
/* Similar to inflateReset but preserves dictionary set using inflateSetDictionary.
inflate() will return Z_NEED_DICT only for the first time what will improve decompression speed.
For zlib streams this method redirects to inflateReset. */
int ZWRAP_inflateResetWithoutDict(z_streamp strm);
int ZWRAP_inflateReset_keepDict(z_streamp strm);
#if defined (__cplusplus)