2007-12-08 22:42:33 +00:00
|
|
|
///////////////////////////////////////////////////////////////////////////////
|
|
|
|
//
|
|
|
|
/// \file alone_decoder.h
|
|
|
|
/// \brief Decoder for LZMA_Alone files
|
|
|
|
//
|
2009-04-13 08:27:40 +00:00
|
|
|
// Author: Lasse Collin
|
2007-12-08 22:42:33 +00:00
|
|
|
//
|
2009-04-13 08:27:40 +00:00
|
|
|
// This file has been put into the public domain.
|
|
|
|
// You can do whatever you want with this file.
|
2007-12-08 22:42:33 +00:00
|
|
|
//
|
|
|
|
///////////////////////////////////////////////////////////////////////////////
|
|
|
|
|
2008-08-28 19:53:15 +00:00
|
|
|
#ifndef LZMA_ALONE_DECODER_H
|
|
|
|
#define LZMA_ALONE_DECODER_H
|
|
|
|
|
2007-12-08 22:42:33 +00:00
|
|
|
#include "common.h"
|
|
|
|
|
|
|
|
|
2013-03-23 20:25:15 +00:00
|
|
|
extern lzma_ret lzma_alone_decoder_init(
|
|
|
|
lzma_next_coder *next, const lzma_allocator *allocator,
|
|
|
|
uint64_t memlimit, bool picky);
|
2008-08-28 19:53:15 +00:00
|
|
|
|
|
|
|
#endif
|