bz2_au.library -> bz2.library
[AROS.git] / workbench / libs / z / z_au.conf
blobca093d7f5569153f3611d9fd121cfd901bc3cf24
1 ##begin config
2 basename Z
3 version 3.1
4 date 16.06.2012
5 copyright Copyright (C) 1995-2012 Mark Adler, Jean-loup Gailly, 2012 The AROS Development Team
6 options pertaskbase
7 rellib posixc
8 rellib stdc
9 forcebase PosixCBase
10 ##end config
12 ##begin cdef
13 #include <stdarg.h>
14 #include <zlib.h>
15 typedef unsigned (*blast_in)(void *how, unsigned char **buf);
16 typedef int (*blast_out)(void *how, unsigned char *buf, unsigned len);
17 ##end cdef
19 ##begin functionlist
20 const char *zlibVersion()
21 int deflateInit_(z_streamp strm, int level, const char *version, int stream_size)
22 int deflateInit2_(z_streamp strm, int level, int method, int windowBits, int memLevel, int strategy, const char *version, int stream_size)
23 int deflate(z_streamp strm, int flush)
24 int deflateEnd(z_streamp strm)
25 int deflateSetDictionary(z_streamp strm, const Bytef *dictionary, uInt dictLength)
26 int deflateCopy(z_streamp dest, z_streamp source)
27 int deflateReset(z_streamp strm)
28 int deflateParams(z_streamp strm, int level, int strategy)
29 int inflateInit_(z_streamp strm, const char * version, int stream_size)
30 int inflateInit2_(z_streamp strm, int windowBits, const char * version, int stream_size)
31 int inflate(z_streamp strm, int flush)
32 int inflateEnd(z_streamp strm)
33 int inflateSetDictionary(z_streamp strm, const Bytef *dictionary, uInt dictLength)
34 int inflateSync(z_streamp strm)
35 int inflateReset(z_streamp strm)
36 int compress(Bytef * dest, uLongf * destLen, const Bytef *source, uLong sourceLen)
37 int compress2(Bytef * dest, uLongf * destLen, const Bytef *source, uLong sourceLen, int level)
38 int uncompress(Bytef * dest, uLongf * destLen, const Bytef *source, uLong sourceLen)
39 uLong adler32(uLong adler, const Bytef *buf, uInt len)
40 uLong crc32(uLong crc, const Bytef *buf, uInt len)
41 const char * zError(int err)
42 int inflateSyncPoint(z_streamp strm)
43 const z_crc_t *get_crc_table()
44 int inflateCopy(z_streamp dest, z_streamp source)
45 int inflateBackInit_(z_streamp strm, int windowBits, unsigned char * window, const char * version, int stream_size)
46 int inflateBack(z_streamp strm, in_func in, void * in_desc, out_func out, void * out_desc)
47 int inflateBackEnd(z_streamp strm)
48 uLong deflateBound(z_streamp strm, uLong sourceLen)
49 int deflatePrime(z_streamp strm, int bits, int value)
50 uLong compressBound(uLong sourceLen)
51 uLong zlibCompileFlags()
52 int blast(blast_in infun, void * inhow, blast_out outfun, void * outhow)
53 int inflateBack9(z_streamp strm, in_func in, void * in_desc, out_func out, void * out_desc)
54 int inflateBack9End(z_streamp strm)
55 int inflateBack9Init_(z_streamp strm, unsigned char * window, const char * version, int stream_size)
56 int deflateTune(z_streamp strm, int good_length, int max_lazy, int nice_length, int max_chain)
57 int deflateSetHeader(z_streamp strm, gz_headerp head)
58 int inflatePrime(z_streamp strm, int bits, int value)
59 int inflateGetHeader(z_streamp strm, gz_headerp head)
60 uLong adler32_combine(uLong adler1, uLong adler2, z_off_t len2)
61 uLong crc32_combine(uLong crc1, uLong crc2, z_off_t len2)
62 int inflateReset2(z_streamp strm, int windowBits)
63 long inflateMark(z_streamp strm)
64 uLong adler32_combine64(uLong adler1, uLong adler2, z_off64_t len2)
65 uLong crc32_combine64(uLong crc2, uLong d0arg, z_off64_t len2)
66 int inflateUndermine(z_streamp strm, int subvert)
67 .version 3
68 gzFile gzopen(const char *path, const char *mode)
69 int gzclose(gzFile file)
70 int gzclose_r(gzFile file)
71 int gzclose_w(gzFile file)
72 int gzbuffer(gzFile file, unsigned size)
73 void gzclearerr(gzFile file)
74 int gzdirect(gzFile file)
75 int gzeof(gzFile file)
76 const char * gzerror(gzFile file, int *errnum)
77 int gzflush(gzFile file, int flush)
78 int gzgetc_(gzFile file)
79 char * gzgets(gzFile file, char *buf, int len)
80 z_off_t gzoffset(gzFile file)
81 int gzputc(gzFile file, int c)
82 int gzputs(gzFile file, const char *str)
83 int gzread(gzFile file, voidp buf, unsigned len)
84 int gzrewind(gzFile file)
85 z_off_t gzseek(gzFile file, z_off_t offset, int whence)
86 int gzsetparams(gzFile file, int level, int strategy)
87 z_off_t gztell(gzFile file)
88 int gzungetc(int c, gzFile file)
89 int gzvprintf(gzFile file, const char *format, va_list args)
90 int gzwrite(gzFile file, voidpc buf, unsigned len)
91 gzFile gzdopen(int fd, const char *mode)
92 ##end functionlist