]> icculus.org git repositories - icculus/xz.git/blob - src/liblzma/common/stream_decoder.h
b12e21d62955d4d02fc94424e0297a210c266a44
[icculus/xz.git] / src / liblzma / common / stream_decoder.h
1 ///////////////////////////////////////////////////////////////////////////////
2 //
3 /// \file       stream_decoder.h
4 /// \brief      Decodes .xz Streams
5 //
6 //  Copyright (C) 2008 Lasse Collin
7 //
8 //  This library is free software; you can redistribute it and/or
9 //  modify it under the terms of the GNU Lesser General Public
10 //  License as published by the Free Software Foundation; either
11 //  version 2.1 of the License, or (at your option) any later version.
12 //
13 //  This library is distributed in the hope that it will be useful,
14 //  but WITHOUT ANY WARRANTY; without even the implied warranty of
15 //  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
16 //  Lesser General Public License for more details.
17 //
18 ///////////////////////////////////////////////////////////////////////////////
19
20 #ifndef LZMA_STREAM_DECODER_H
21 #define LZMA_STREAM_DECODER_H
22
23 #include "common.h"
24
25 extern lzma_ret lzma_stream_decoder_init(lzma_next_coder *next,
26                 lzma_allocator *allocator, uint64_t memlimit, uint32_t flags);
27
28 #endif