filter_decoder.h revision 207753
1189765Sgabor///////////////////////////////////////////////////////////////////////////////
2189765Sgabor//
3189765Sgabor/// \file       filter_decoder.c
4189765Sgabor/// \brief      Filter ID mapping to filter-specific functions
5189765Sgabor//
6189765Sgabor//  Author:     Lasse Collin
7189765Sgabor//
8189765Sgabor//  This file has been put into the public domain.
9189765Sgabor//  You can do whatever you want with this file.
10189765Sgabor//
11189765Sgabor///////////////////////////////////////////////////////////////////////////////
12189765Sgabor
13189765Sgabor#ifndef LZMA_FILTER_DECODER_H
14189765Sgabor#define LZMA_FILTER_DECODER_H
15189765Sgabor
16189765Sgabor#include "common.h"
17189765Sgabor
18189765Sgabor
19189765Sgaborextern lzma_ret lzma_raw_decoder_init(
20189765Sgabor		lzma_next_coder *next, lzma_allocator *allocator,
21189765Sgabor		const lzma_filter *options);
22189765Sgabor
23189765Sgabor#endif
24189765Sgabor