stream_decoder.h revision 207753
1326938Sdim///////////////////////////////////////////////////////////////////////////////
2326938Sdim//
3353358Sdim/// \file       stream_decoder.h
4353358Sdim/// \brief      Decodes .xz Streams
5353358Sdim//
6326938Sdim//  Author:     Lasse Collin
7326938Sdim//
8326938Sdim//  This file has been put into the public domain.
9326938Sdim//  You can do whatever you want with this file.
10326938Sdim//
11326938Sdim///////////////////////////////////////////////////////////////////////////////
12326938Sdim
13326938Sdim#ifndef LZMA_STREAM_DECODER_H
14326938Sdim#define LZMA_STREAM_DECODER_H
15326938Sdim
16344779Sdim#include "common.h"
17326938Sdim
18326938Sdimextern lzma_ret lzma_stream_decoder_init(lzma_next_coder *next,
19326938Sdim		lzma_allocator *allocator, uint64_t memlimit, uint32_t flags);
20326938Sdim
21326938Sdim#endif
22326938Sdim