]> git.lizzy.rs Git - zlib.git/commitdiff
Clean up the addition of inflateGetDictionary.
authorMark Adler <madler@alumni.caltech.edu>
Sun, 24 Mar 2013 05:57:27 +0000 (22:57 -0700)
committerMark Adler <madler@alumni.caltech.edu>
Sun, 24 Mar 2013 06:32:58 +0000 (23:32 -0700)
as400/bndsrc
contrib/vstudio/vc11/zlibvc11.def
contrib/vstudio/vc12/zlibvc.def
zlib.h
zlib.map

index a6de4d59edef741e0c6d609cfb55b5fdbce2cf8e..98814fd4c145714602656d17c47eb0dbe0f53d8b 100644 (file)
@@ -67,7 +67,6 @@ STRPGMEXP PGMLVL(*CURRENT) SIGNATURE('ZLIB')
   EXPORT SYMBOL("inflate")
   EXPORT SYMBOL("inflateEnd")
   EXPORT SYMBOL("inflateSetDictionary")
-  EXPORT SYMBOL("inflateGetDictionary")
   EXPORT SYMBOL("inflateSync")
   EXPORT SYMBOL("inflateReset")
   EXPORT SYMBOL("inflateInit_")
@@ -203,4 +202,14 @@ STRPGMEXP PGMLVL(*CURRENT) SIGNATURE('ZLIB')
 
   EXPORT SYMBOL("inflateResetKeep")
 
+/*@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@*/
+/*   Version 1.2.8 additional entry points.                         */
+/*@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@*/
+
+/********************************************************************/
+/*   *MODULE      INFLATE      ZLIB         01/02/01  00:15:09      */
+/********************************************************************/
+
+  EXPORT SYMBOL("inflateGetDictionary")
+
 ENDPGMEXP
index 3adee3c929e8cdfa09090f88488154c034d858a4..08e3dea4d10c56572a931ef1eb8f2f39ed068c8d 100644 (file)
@@ -137,3 +137,6 @@ EXPORTS
 
 ; zlib1 v1.2.7 added:
         gzopen_w                                @165
+
+; zlib1 v1.2.8 added:
+        inflateGetDictionary                    @166
index 3adee3c929e8cdfa09090f88488154c034d858a4..08e3dea4d10c56572a931ef1eb8f2f39ed068c8d 100644 (file)
@@ -137,3 +137,6 @@ EXPORTS
 
 ; zlib1 v1.2.7 added:
         gzopen_w                                @165
+
+; zlib1 v1.2.8 added:
+        inflateGetDictionary                    @166
diff --git a/zlib.h b/zlib.h
index e3f11eb7e4553dc819e99d86313f1c25a73bc29c..7ae67a1e532fc29d862bf4d4c23511bade206491 100644 (file)
--- a/zlib.h
+++ b/zlib.h
@@ -850,7 +850,7 @@ ZEXTERN int ZEXPORT inflateGetDictionary OF((z_streamp strm,
    Z_NULL, then only the dictionary length is returned, and nothing is copied.
    Similary, if dictLength is Z_NULL, then it is not set.
 
-     inflateSetDictionary returns Z_OK on success, or Z_STREAM_ERROR if the
+     inflateGetDictionary returns Z_OK on success, or Z_STREAM_ERROR if the
    stream state is inconsistent.
 */
 
index d7b4df77b2ed80827fc0fd6ff70efbc6a4529aff..9704371551791757019a38d86bcd16b1ac218dff 100644 (file)
--- a/zlib.map
+++ b/zlib.map
@@ -78,5 +78,5 @@ ZLIB_1.2.5.2 {
 } ZLIB_1.2.5.1;
 
 ZLIB_1.2.7.1 {
-    inflateSetDictionary;
+    inflateGetDictionary;
 } ZLIB_1.2.7;