Add v1.16 beta r1 changes.

This commit is contained in:
Matthew Sitton
2016-06-25 07:56:19 -05:00
parent 724de0bb0f
commit baa0e214e7
5 changed files with 103 additions and 28 deletions

View File

@@ -148,3 +148,9 @@ mz_uint32 tdefl_get_adler32(tdefl_compressor *d);
// strategy may be either MZ_DEFAULT_STRATEGY, MZ_FILTERED, MZ_HUFFMAN_ONLY, MZ_RLE, or MZ_FIXED
mz_uint tdefl_create_comp_flags_from_zip_params(int level, int window_bits, int strategy);
#endif // #ifndef MINIZ_NO_ZLIB_APIS
// Allocate the tdefl_compressor structure in C so that
// non-C language bindings to tdefl_ API don't need to worry about
// structure size and allocation mechanism.
tdefl_compressor *tdefl_compressor_alloc();
void tdefl_compressor_free(tdefl_compressor *pComp);