diff options
| author | Mark Adler <madler@alumni.caltech.edu> | 2011-09-11 11:04:49 -0700 |
|---|---|---|
| committer | Mark Adler <madler@alumni.caltech.edu> | 2011-09-11 11:04:49 -0700 |
| commit | 10daf0d4d7815447799d555d04d30325836e1d44 (patch) | |
| tree | 75579fbe11e42dc3197acca53f5f887ac3808b57 /contrib/pascal | |
| parent | 9712272c78b9d9c93746d9c8e156a3728c65ca72 (diff) | |
| download | zlib-10daf0d4d7815447799d555d04d30325836e1d44.tar.gz zlib-10daf0d4d7815447799d555d04d30325836e1d44.tar.bz2 zlib-10daf0d4d7815447799d555d04d30325836e1d44.zip | |
zlib 1.2.5.1v1.2.5.1
Diffstat (limited to 'contrib/pascal')
| -rw-r--r-- | contrib/pascal/zlibpas.pas | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/contrib/pascal/zlibpas.pas b/contrib/pascal/zlibpas.pas index 637ae3a3..6f494828 100644 --- a/contrib/pascal/zlibpas.pas +++ b/contrib/pascal/zlibpas.pas | |||
| @@ -10,7 +10,7 @@ unit zlibpas; | |||
| 10 | interface | 10 | interface |
| 11 | 11 | ||
| 12 | const | 12 | const |
| 13 | ZLIB_VERSION = '1.2.5'; | 13 | ZLIB_VERSION = '1.2.5.1'; |
| 14 | 14 | ||
| 15 | type | 15 | type |
| 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; | |||
| 97 | function deflateReset(var strm: z_stream): Integer; | 97 | function deflateReset(var strm: z_stream): Integer; |
| 98 | function deflateParams(var strm: z_stream; level, strategy: Integer): Integer; | 98 | function deflateParams(var strm: z_stream; level, strategy: Integer): Integer; |
| 99 | function deflateBound(var strm: z_stream; sourceLen: LongInt): LongInt; | 99 | function deflateBound(var strm: z_stream; sourceLen: LongInt): LongInt; |
| 100 | function deflatePending(var strm: z_stream; var pending: Integer; var bits: Integer): Integer; | ||
| 100 | function deflatePrime(var strm: z_stream; bits, value: Integer): Integer; | 101 | function deflatePrime(var strm: z_stream; bits, value: Integer): Integer; |
| 101 | function inflateInit2(var strm: z_stream; windowBits: Integer): Integer; | 102 | function inflateInit2(var strm: z_stream; windowBits: Integer): Integer; |
| 102 | function inflateSetDictionary(var strm: z_stream; const dictionary: PChar; | 103 | function inflateSetDictionary(var strm: z_stream; const dictionary: PChar; |
| @@ -166,6 +167,7 @@ function deflateEnd; external; | |||
| 166 | function deflateInit_; external; | 167 | function deflateInit_; external; |
| 167 | function deflateInit2_; external; | 168 | function deflateInit2_; external; |
| 168 | function deflateParams; external; | 169 | function deflateParams; external; |
| 170 | function deflatePending; external; | ||
| 169 | function deflatePrime; external; | 171 | function deflatePrime; external; |
| 170 | function deflateReset; external; | 172 | function deflateReset; external; |
| 171 | function deflateSetDictionary; external; | 173 | function deflateSetDictionary; external; |
