]> CyberLeo.Net >> Repos - FreeBSD/releng/8.1.git/blob - contrib/xz/src/liblzma/subblock/subblock_decoder_helper.h
Copy stable/8 to releng/8.1 in preparation for 8.1-RC1.
[FreeBSD/releng/8.1.git] / contrib / xz / src / liblzma / subblock / subblock_decoder_helper.h
1 ///////////////////////////////////////////////////////////////////////////////
2 //
3 /// \file       subblock_decoder_helper.h
4 /// \brief      Helper filter for the Subblock decoder
5 ///
6 /// This filter is used to indicate End of Input for subfilters needing it.
7 //
8 //  Author:     Lasse Collin
9 //
10 //  This file has been put into the public domain.
11 //  You can do whatever you want with this file.
12 //
13 ///////////////////////////////////////////////////////////////////////////////
14
15 #ifndef LZMA_SUBBLOCK_DECODER_HELPER_H
16 #define LZMA_SUBBLOCK_DECODER_HELPER_H
17
18 #include "common.h"
19
20
21 typedef struct {
22         bool end_was_reached;
23 } lzma_options_subblock_helper;
24
25
26 extern lzma_ret lzma_subblock_decoder_helper_init(lzma_next_coder *next,
27                 lzma_allocator *allocator, const lzma_filter_info *filters);
28
29 #endif