From a2506218cd8c32416d0d15260834f3c23d910fc8 Mon Sep 17 00:00:00 2001 From: Mark Adler Date: Fri, 9 Sep 2011 23:23:14 -0700 Subject: zlib 1.2.0.8 --- contrib/pascal/zlibpas.pas | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'contrib/pascal/zlibpas.pas') diff --git a/contrib/pascal/zlibpas.pas b/contrib/pascal/zlibpas.pas index f81893f..9361914 100644 --- a/contrib/pascal/zlibpas.pas +++ b/contrib/pascal/zlibpas.pas @@ -10,7 +10,7 @@ unit zlibpas; interface const - ZLIB_VERSION = '1.2.0'; + ZLIB_VERSION = '1.2.1'; type alloc_func = function(opaque: Pointer; items, size: Integer): Pointer; @@ -97,6 +97,7 @@ function deflateCopy(var dest, source: z_stream): Integer; function deflateReset(var strm: z_stream): Integer; function deflateParams(var strm: z_stream; level, strategy: Integer): Integer; function deflateBound(var strm: z_stream; sourceLen: LongInt): LongInt; +function deflatePrime(var strm: z_stream; bits, value: Integer): Integer; function inflateInit2(var strm: z_stream; windowBits: Integer): Integer; function inflateSetDictionary(var strm: z_stream; const dictionary: PChar; dictLength: Integer): Integer; -- cgit v1.2.3-55-g6feb