12940b44dSPeter Avalos /////////////////////////////////////////////////////////////////////////////// 22940b44dSPeter Avalos // 32940b44dSPeter Avalos /// \file stream_decoder.h 42940b44dSPeter Avalos /// \brief Decodes .xz Streams 52940b44dSPeter Avalos // 62940b44dSPeter Avalos // Author: Lasse Collin 72940b44dSPeter Avalos // 82940b44dSPeter Avalos // This file has been put into the public domain. 92940b44dSPeter Avalos // You can do whatever you want with this file. 102940b44dSPeter Avalos // 112940b44dSPeter Avalos /////////////////////////////////////////////////////////////////////////////// 122940b44dSPeter Avalos 132940b44dSPeter Avalos #ifndef LZMA_STREAM_DECODER_H 142940b44dSPeter Avalos #define LZMA_STREAM_DECODER_H 152940b44dSPeter Avalos 162940b44dSPeter Avalos #include "common.h" 172940b44dSPeter Avalos 18*15ab8c86SJohn Marino extern lzma_ret lzma_stream_decoder_init( 19*15ab8c86SJohn Marino lzma_next_coder *next, const lzma_allocator *allocator, 20*15ab8c86SJohn Marino uint64_t memlimit, uint32_t flags); 212940b44dSPeter Avalos 222940b44dSPeter Avalos #endif 23