2007-12-08 17:42:33 -05:00
|
|
|
///////////////////////////////////////////////////////////////////////////////
|
|
|
|
//
|
|
|
|
/// \file block_decoder.h
|
2008-12-27 12:27:49 -05:00
|
|
|
/// \brief Decodes .xz Blocks
|
2007-12-08 17:42:33 -05:00
|
|
|
//
|
2009-04-13 04:27:40 -04:00
|
|
|
// Author: Lasse Collin
|
2007-12-08 17:42:33 -05:00
|
|
|
//
|
2009-04-13 04:27:40 -04:00
|
|
|
// This file has been put into the public domain.
|
|
|
|
// You can do whatever you want with this file.
|
2007-12-08 17:42:33 -05:00
|
|
|
//
|
|
|
|
///////////////////////////////////////////////////////////////////////////////
|
|
|
|
|
|
|
|
#ifndef LZMA_BLOCK_DECODER_H
|
|
|
|
#define LZMA_BLOCK_DECODER_H
|
|
|
|
|
|
|
|
#include "common.h"
|
|
|
|
|
|
|
|
|
|
|
|
extern lzma_ret lzma_block_decoder_init(lzma_next_coder *next,
|
2008-12-27 12:27:49 -05:00
|
|
|
lzma_allocator *allocator, lzma_block *block);
|
2007-12-08 17:42:33 -05:00
|
|
|
|
|
|
|
#endif
|