stream_decoder.h revision 207842
1133950Sgrehan///////////////////////////////////////////////////////////////////////////////
2133950Sgrehan//
3133950Sgrehan/// \file       stream_decoder.h
4133950Sgrehan/// \brief      Decodes .xz Streams
5133950Sgrehan//
6133950Sgrehan//  Author:     Lasse Collin
7133950Sgrehan//
8133950Sgrehan//  This file has been put into the public domain.
9133950Sgrehan//  You can do whatever you want with this file.
10133950Sgrehan//
11133950Sgrehan///////////////////////////////////////////////////////////////////////////////
12133950Sgrehan
13133950Sgrehan#ifndef LZMA_STREAM_DECODER_H
14133950Sgrehan#define LZMA_STREAM_DECODER_H
15133950Sgrehan
16133950Sgrehan#include "common.h"
17133950Sgrehan
18133950Sgrehanextern lzma_ret lzma_stream_decoder_init(lzma_next_coder *next,
19133950Sgrehan		lzma_allocator *allocator, uint64_t memlimit, uint32_t flags);
20133950Sgrehan
21133950Sgrehan#endif
22133950Sgrehan