summaryrefslogtreecommitdiff
path: root/contrib/ada
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--contrib/ada/zlib-thin.ads13
1 files changed, 13 insertions, 0 deletions
diff --git a/contrib/ada/zlib-thin.ads b/contrib/ada/zlib-thin.ads
index 19cbb96..af1287a 100644
--- a/contrib/ada/zlib-thin.ads
+++ b/contrib/ada/zlib-thin.ads
@@ -146,6 +146,17 @@ private package ZLib.Thin is
146 strategy : Int) 146 strategy : Int)
147 return Int; -- zlib.h:506 147 return Int; -- zlib.h:506
148 148
149 function deflateBound
150 (strm : Z_Streamp;
151 sourceLen : ULong)
152 return Int; -- zlib.h:595
153
154 function deflatePrime
155 (strm : Z_Streamp;
156 bits : Int;
157 value : Int)
158 return Int; -- zlib.h:604
159
149 function inflateSetDictionary 160 function inflateSetDictionary
150 (strm : Z_Streamp; 161 (strm : Z_Streamp;
151 dictionary : Byte_Access; 162 dictionary : Byte_Access;
@@ -421,6 +432,8 @@ private
421 pragma Import (C, deflateCopy, "deflateCopy"); 432 pragma Import (C, deflateCopy, "deflateCopy");
422 pragma Import (C, deflateReset, "deflateReset"); 433 pragma Import (C, deflateReset, "deflateReset");
423 pragma Import (C, deflateParams, "deflateParams"); 434 pragma Import (C, deflateParams, "deflateParams");
435 pragma Import (C, deflateBound, "deflateBound");
436 pragma Import (C, deflatePrime, "deflatePrime");
424 pragma Import (C, inflateSetDictionary, "inflateSetDictionary"); 437 pragma Import (C, inflateSetDictionary, "inflateSetDictionary");
425 pragma Import (C, inflateSync, "inflateSync"); 438 pragma Import (C, inflateSync, "inflateSync");
426 pragma Import (C, inflateReset, "inflateReset"); 439 pragma Import (C, inflateReset, "inflateReset");