1 /***********************************************************************************************************************************
2 BZ2 Decompress
3 
4 Decompress IO from the bz2 format.
5 ***********************************************************************************************************************************/
6 #ifndef COMMON_COMPRESS_BZ2_DECOMPRESS_H
7 #define COMMON_COMPRESS_BZ2_DECOMPRESS_H
8 
9 #include "common/io/filter/filter.h"
10 
11 /***********************************************************************************************************************************
12 Filter type constant
13 ***********************************************************************************************************************************/
14 #define BZ2_DECOMPRESS_FILTER_TYPE                                   "bz2Decompress"
15     STRING_DECLARE(BZ2_DECOMPRESS_FILTER_TYPE_STR);
16 
17 /***********************************************************************************************************************************
18 Constructors
19 ***********************************************************************************************************************************/
20 IoFilter *bz2DecompressNew(void);
21 
22 #endif
23