Oops.
[AROS.git] / workbench / libs / bz2 / bz2_au.conf
blob78d64b7af21fef85cd4adfec088558a36451d701
1 ##begin config
2 basename BZ2
3 libbase BZ2Base
4 libbasetype struct BZ2Base
5 version 3.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 options pertaskbase
9 ##end config
11 ##begin cdefprivate
12 #include "amilib.h"
13 ##end cdefprivate
15 ##begin cdef
16 #include <stdio.h>
17 #include <libraries/bz2_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 *BZ2_bzlibVersion()
27 int BZ2_bzCompressInit(bz_stream *strm, int blockSize100k, int verbosity, int workFactor)
28 int BZ2_bzCompress(bz_stream *strm, int action)
29 int BZ2_bzCompressEnd(bz_stream *strm)
30 int BZ2_bzDecompressInit(bz_stream *strm, int verbosity, int small)
31 int BZ2_bzDecompress(bz_stream *strm)
32 int BZ2_bzDecompressEnd(bz_stream *strm)
33 int BZ2_bzBuffToBuffCompress(char *dest, unsigned int *destLen, char *source, unsigned int sourceLen, int blockSize100k, int verbosity, int workFactor)
34 int BZ2_bzBuffToBuffDecompress(char *dest, unsigned int *destLen, char *source, unsigned int sourceLen, int small, int verbosity)
35 BZFILE *BZ2_bzReadOpen(int* bzerror, FILE* f, int verbosity, int small, void *unused, int nUnused)
36 void BZ2_bzReadClose(int *bzerror, BZFILE* b)
37 void BZ2_bzReadGetUnused(int *bzerror, BZFILE *b, void **unused, int *nUnused)
38 int BZ2_bzRead(int *bzerror, BZFILE* b, void *buf, int len)
39 BZFILE *BZ2_bzWriteOpen(int *bzerror, FILE *f, int blockSize100k, int verbosity, int workFactor)
40 void BZ2_bzWrite(int *bzerror, BZFILE* b, void *buf, int len)
41 void BZ2_bzWriteClose(int *bzerror, BZFILE *b, int abandon, unsigned int *nbytes_in, unsigned int *nbytes_out)
42 void BZ2_bzWriteClose64(int *bzerror, BZFILE *b, int abandon, unsigned int *nbytes_in_lo32, unsigned int * nbytes_in_hi32, unsigned int *nbytes_out_lo32, unsigned int *nbytes_out_hi32)
43 ##end functionlist