Used when the data to be compressed is not all in one buffer.
Used when the data to be decompressed is not all in one buffer.
Errors throw a ZlibException.
Compute the Adler32 checksum of the data in buf[]. adler is the starting value when computing a cumulative checksum.
Compresses the data in srcbuf[] using compression _level level. The default value for level is 6, legal values are 1..9, with 1 being the least compression and 9 being the most. Returns the compressed data.
Compute the CRC32 checksum of the data in buf[]. crc is the starting value when computing a cumulative checksum.
Decompresses the data in srcbuf[].
<a href="http://www.boost.org/LICENSE_1_0.txt">Boost License 1.0</a>.
Copyright Digital Mars 2000 - 2011.
Compress/decompress data using the zlib library.
References: Wikipedia