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