summaryrefslogtreecommitdiff
path: root/contrib/pascal
diff options
context:
space:
mode:
authorMark Adler <madler@alumni.caltech.edu>2011-09-11 11:04:49 -0700
committerMark Adler <madler@alumni.caltech.edu>2011-09-11 11:04:49 -0700
commit10daf0d4d7815447799d555d04d30325836e1d44 (patch)
tree75579fbe11e42dc3197acca53f5f887ac3808b57 /contrib/pascal
parent9712272c78b9d9c93746d9c8e156a3728c65ca72 (diff)
downloadzlib-1.2.5.1.tar.gz
zlib-1.2.5.1.tar.bz2
zlib-1.2.5.1.zip
zlib 1.2.5.1v1.2.5.1
Diffstat (limited to 'contrib/pascal')
-rw-r--r--contrib/pascal/zlibpas.pas4
1 files changed, 3 insertions, 1 deletions
diff --git a/contrib/pascal/zlibpas.pas b/contrib/pascal/zlibpas.pas
index 637ae3a..6f49482 100644
--- a/contrib/pascal/zlibpas.pas
+++ b/contrib/pascal/zlibpas.pas
@@ -10,7 +10,7 @@ unit zlibpas;
10interface 10interface
11 11
12const 12const
13 ZLIB_VERSION = '1.2.5'; 13 ZLIB_VERSION = '1.2.5.1';
14 14
15type 15type
16 alloc_func = function(opaque: Pointer; items, size: Integer): Pointer; 16 alloc_func = function(opaque: Pointer; items, size: Integer): Pointer;
@@ -97,6 +97,7 @@ function deflateCopy(var dest, source: z_stream): Integer;
97function deflateReset(var strm: z_stream): Integer; 97function deflateReset(var strm: z_stream): Integer;
98function deflateParams(var strm: z_stream; level, strategy: Integer): Integer; 98function deflateParams(var strm: z_stream; level, strategy: Integer): Integer;
99function deflateBound(var strm: z_stream; sourceLen: LongInt): LongInt; 99function deflateBound(var strm: z_stream; sourceLen: LongInt): LongInt;
100function deflatePending(var strm: z_stream; var pending: Integer; var bits: Integer): Integer;
100function deflatePrime(var strm: z_stream; bits, value: Integer): Integer; 101function deflatePrime(var strm: z_stream; bits, value: Integer): Integer;
101function inflateInit2(var strm: z_stream; windowBits: Integer): Integer; 102function inflateInit2(var strm: z_stream; windowBits: Integer): Integer;
102function inflateSetDictionary(var strm: z_stream; const dictionary: PChar; 103function inflateSetDictionary(var strm: z_stream; const dictionary: PChar;
@@ -166,6 +167,7 @@ function deflateEnd; external;
166function deflateInit_; external; 167function deflateInit_; external;
167function deflateInit2_; external; 168function deflateInit2_; external;
168function deflateParams; external; 169function deflateParams; external;
170function deflatePending; external;
169function deflatePrime; external; 171function deflatePrime; external;
170function deflateReset; external; 172function deflateReset; external;
171function deflateSetDictionary; external; 173function deflateSetDictionary; external;