Lines Matching full:zlib
2 -- ZLib for Ada thick binding. --
6 -- Open source license information is in the zlib.ads file. --
9 -- $Id: zlib-thin.ads,v 1.11 2004/07/23 06:33:11 vagul Exp $
15 private package ZLib.Thin is
54 Z_NO_FLUSH : constant := 8#0000#; -- zlib.h:125
55 -- zlib.h:125
56 Z_PARTIAL_FLUSH : constant := 1; -- zlib.h:126
59 -- zlib.h:126
60 Z_SYNC_FLUSH : constant := 2; -- zlib.h:127
61 -- zlib.h:127
62 Z_FULL_FLUSH : constant := 3; -- zlib.h:128
63 -- zlib.h:128
64 Z_FINISH : constant := 4; -- zlib.h:129
65 -- zlib.h:129
66 Z_OK : constant := 8#0000#; -- zlib.h:132
67 -- zlib.h:132
68 Z_STREAM_END : constant := 1; -- zlib.h:133
69 -- zlib.h:133
70 Z_NEED_DICT : constant := 2; -- zlib.h:134
71 -- zlib.h:134
72 Z_ERRNO : constant := -1; -- zlib.h:135
73 -- zlib.h:135
74 Z_STREAM_ERROR : constant := -2; -- zlib.h:136
75 -- zlib.h:136
76 Z_DATA_ERROR : constant := -3; -- zlib.h:137
77 -- zlib.h:137
78 Z_MEM_ERROR : constant := -4; -- zlib.h:138
79 -- zlib.h:138
80 Z_BUF_ERROR : constant := -5; -- zlib.h:139
81 -- zlib.h:139
82 Z_VERSION_ERROR : constant := -6; -- zlib.h:140
83 -- zlib.h:140
84 Z_NO_COMPRESSION : constant := 8#0000#; -- zlib.h:145
85 -- zlib.h:145
86 Z_BEST_SPEED : constant := 1; -- zlib.h:146
87 -- zlib.h:146
88 Z_BEST_COMPRESSION : constant := 9; -- zlib.h:147
89 -- zlib.h:147
90 Z_DEFAULT_COMPRESSION : constant := -1; -- zlib.h:148
91 -- zlib.h:148
92 Z_FILTERED : constant := 1; -- zlib.h:151
93 -- zlib.h:151
94 Z_HUFFMAN_ONLY : constant := 2; -- zlib.h:152
95 -- zlib.h:152
96 Z_DEFAULT_STRATEGY : constant := 8#0000#; -- zlib.h:153
97 -- zlib.h:153
98 Z_BINARY : constant := 8#0000#; -- zlib.h:156
99 -- zlib.h:156
100 Z_ASCII : constant := 1; -- zlib.h:157
101 -- zlib.h:157
102 Z_UNKNOWN : constant := 2; -- zlib.h:158
103 -- zlib.h:158
104 Z_DEFLATED : constant := 8; -- zlib.h:161
105 -- zlib.h:161
106 Z_NULL : constant := 8#0000#; -- zlib.h:164
108 -- zlib.h:164
109 type gzFile is new Voidp; -- zlib.h:646
113 type Z_Streamp is access all Z_Stream; -- zlib.h:89
119 return Voidp; -- zlib.h:63
140 -- zlib.h:478
142 function deflateReset (strm : Z_Streamp) return Int; -- zlib.h:495
148 return Int; -- zlib.h:506
154 return Int; -- zlib.h:548
156 function inflateSync (strm : Z_Streamp) return Int; -- zlib.h:565
158 function inflateReset (strm : Z_Streamp) return Int; -- zlib.h:580
165 return Int; -- zlib.h:601
173 return Int; -- zlib.h:615
365 type Z_Stream is record -- zlib.h:68
429 -- since zlib 1.2.0:
440 -- it does not support zlib and gzip headers for now, and have no
442 -- ZLib-Ada is symmetric regarding deflate/inflate data transformation
450 end ZLib.Thin;