Check for SYS/GL during library init. Reason is that
[AROS.git] / workbench / devs / diskimage / sfd / z_lib.sfd
blob3140fe9bb185d45cad1321d4c440b997fbf67d93
1 ==id $Id: z_lib.sfd,v 1.0 2008/02/14 20:14:05 noname Exp $
2 ==base _ZBase
3 ==basetype struct Library *
4 ==libname z.library
5 ==bias 30
6 ==public
7 ==include <exec/types.h>
8 const char * ZlibVersion() ()
9 LONG DeflateInit(z_streamp strm, LONG level) (a0,d0)
10 LONG Deflate(z_streamp strm, LONG flush) (a0,d0)
11 LONG DeflateEnd(z_streamp strm) (a0)
12 LONG InflateInit(z_streamp strm) (a0)
13 LONG Inflate(z_streamp strm, LONG flush) (a0,d0)
14 LONG InflateEnd(z_streamp strm) (a0)
15 LONG DeflateInit2(z_streamp strm, LONG level, LONG method, LONG windowBits, LONG memLevel,
16         LONG strategy) (a0,d0,d1,d2,d3,d4)
17 LONG DeflateSetDictionary(z_streamp strm, CONST_APTR dictionary, ULONG dictLength) (a0,a1,d0)
18 LONG DeflateCopy(z_streamp dest, z_streamp source) (a0,a1)
19 LONG DeflateReset(z_streamp strm) (a0)
20 LONG DeflateParams(z_streamp strm, LONG level, LONG strategy) (a0,d0,d1)
21 LONG InflateInit2(z_streamp strm, LONG windowBits) (a0,d0)
22 LONG InflateSetDictionary(z_streamp strm, CONST_APTR dictionary, ULONG dictLength) (a0,a1,d0)
23 LONG InflateReset(z_streamp strm) (a0)
24 LONG Compress(APTR dest, ULONG * destLen, CONST_APTR source, ULONG sourceLen) (a0,a1,a2,d0)
25 LONG Uncompress(APTR dest, ULONG * destLen, CONST_APTR source, ULONG sourceLen) (a0,a1,a2,d0)
26 ULONG Adler32(ULONG adler, CONST_APTR buf, ULONG len) (d0,a0,d1)
27 ULONG CRC32(ULONG crc, CONST_APTR buf, ULONG len) (d0,a0,d1)
28 LONG InflateSync(z_streamp strm) (a0)
29 ==end