stream_decoder.h revision 213700
1233294Sstas///////////////////////////////////////////////////////////////////////////////
272445Sassar//
355682Smarkm/// \file       stream_decoder.h
455682Smarkm/// \brief      Decodes .xz Streams
5233294Sstas//
6233294Sstas//  Author:     Lasse Collin
7233294Sstas//
855682Smarkm//  This file has been put into the public domain.
9233294Sstas//  You can do whatever you want with this file.
10233294Sstas//
11233294Sstas///////////////////////////////////////////////////////////////////////////////
1255682Smarkm
13120945Snectar#ifndef LZMA_STREAM_DECODER_H
1455682Smarkm#define LZMA_STREAM_DECODER_H
1555682Smarkm
1655682Smarkm#include "common.h"
1755682Smarkm
1855682Smarkmextern lzma_ret lzma_stream_decoder_init(lzma_next_coder *next,
1955682Smarkm		lzma_allocator *allocator, uint64_t memlimit, uint32_t flags);
2055682Smarkm
2155682Smarkm#endif
22178825Sdfr