diff options
author | Mark Adler <madler@alumni.caltech.edu> | 2011-09-09 23:23:14 -0700 |
---|---|---|
committer | Mark Adler <madler@alumni.caltech.edu> | 2011-09-09 23:23:14 -0700 |
commit | a2506218cd8c32416d0d15260834f3c23d910fc8 (patch) | |
tree | 25bbd63d92473c8ae02a27cce3fc7c04a6aba64a /contrib/pascal | |
parent | b97ec631c6f7dd9cff2e3caf3b38e70b006e1b2d (diff) | |
download | zlib-1.2.0.8.tar.gz zlib-1.2.0.8.tar.bz2 zlib-1.2.0.8.zip |
zlib 1.2.0.8v1.2.0.8
Diffstat (limited to 'contrib/pascal')
-rw-r--r-- | contrib/pascal/zlibpas.pas | 3 |
1 files changed, 2 insertions, 1 deletions
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; | |||
10 | interface | 10 | interface |
11 | 11 | ||
12 | const | 12 | const |
13 | ZLIB_VERSION = '1.2.0'; | 13 | ZLIB_VERSION = '1.2.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 deflatePrime(var strm: z_stream; bits, value: Integer): Integer; | ||
100 | function inflateInit2(var strm: z_stream; windowBits: Integer): Integer; | 101 | function inflateInit2(var strm: z_stream; windowBits: Integer): Integer; |
101 | function inflateSetDictionary(var strm: z_stream; const dictionary: PChar; | 102 | function inflateSetDictionary(var strm: z_stream; const dictionary: PChar; |
102 | dictLength: Integer): Integer; | 103 | dictLength: Integer): Integer; |