Changed the name from bz2.library to bz2_au.library so
[AROS.git] / workbench / libs / bz2 / bz2_au.conf
bloba2c37c8df70ee1a31dd06098b05f04ad36be9c05
1 ##begin config
2 basename BZ2
3 libbase BZ2Base
4 libbasetype struct Library
5 version 2.0
6 date 16.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 cdef
11 #include <libraries/bz2_au.h>
12 ##end cdef
14 ##begin functionlist
15 const char *BZ2_bzlibVersion()
16 int BZ2_bzCompressInit(bz_stream *strm, int blockSize100k, int verbosity, int workFactor)
17 int BZ2_bzCompress(bz_stream *strm, int action)
18 int BZ2_bzCompressEnd(bz_stream *strm)
19 int BZ2_bzDecompressInit(bz_stream *strm, int verbosity, int small)
20 int BZ2_bzDecompress(bz_stream *strm)
21 int BZ2_bzDecompressEnd(bz_stream *strm)
22 int BZ2_bzBuffToBuffCompress(char *dest, unsigned int *destLen, char *source, unsigned int sourceLen, int blockSize100k, int verbosity, int workFactor)
23 int BZ2_bzBuffToBuffDecompress(char *dest, unsigned int *destLen, char *source, unsigned int sourceLen, int small, int verbosity)
24 ##end functionlist