Target directory must be created before copying.
[AROS.git] / workbench / libs / bz2 / bz2.conf
blob2e6f0693428a3e9ea58072cea929655648cc27cc
1 ##begin config
2 basename BZ2
3 libbase BZ2Base
4 libbasetype struct Library
5 version 1.4
6 date 08.05.2012
7 copyright Copyright (C) 1996-2010 Julian R Seward, 2007-2012 Fredrik Wikstrom, 2012 The AROS Development Team
8 ##end config
10 ##begin cdefprivate
11 #include <exec/types.h>
12 #include <libraries/bz2.h>
13 ##end cdefprivate
15 ##begin cdef
16 #include <exec/types.h>
17 #include <libraries/bz2.h>
18 ##end cdef
20 ##begin functionlist
21 const char *BZ2_bzlibVersion() ()
22 .cfunction
23 LONG BZ2_bzCompressInit(bz_stream *strm, LONG blockSize100k, LONG verbosity, LONG workFactor) (A0,D0,D1,D2)
24 .cfunction
25 LONG BZ2_bzCompress(bz_stream *strm, LONG action) (A0,D0)
26 .cfunction
27 LONG BZ2_bzCompressEnd(bz_stream *strm) (A0)
28 .cfunction
29 LONG BZ2_bzDecompressInit(bz_stream *strm, LONG verbosity, LONG small) (A0,D0,D1)
30 .cfunction
31 LONG BZ2_bzDecompress(bz_stream *strm) (A0)
32 .cfunction
33 LONG BZ2_bzDecompressEnd(bz_stream *strm) (A0)
34 .cfunction
35 LONG BZ2_bzBuffToBuffCompress(APTR dest, ULONG *destLen, CONST_APTR source, ULONG sourceLen, LONG blockSize100k, LONG verbosity, LONG workFactor) (A0,A1,A2,D0,D1,D2,D3)
36 .cfunction
37 LONG BZ2_bzBuffToBuffDecompress(APTR dest, ULONG *destLen, CONST_APTR source, ULONG sourceLen, LONG small, LONG verbosity) (A0,A1,A2,D0,D1,D2)
38 .cfunction
39 ##end functionlist