block_decoder.h 576 B

1234567891011121314151617181920212223
  1. ///////////////////////////////////////////////////////////////////////////////
  2. //
  3. /// \file block_decoder.h
  4. /// \brief Decodes .xz Blocks
  5. //
  6. // Author: Lasse Collin
  7. //
  8. // This file has been put into the public domain.
  9. // You can do whatever you want with this file.
  10. //
  11. ///////////////////////////////////////////////////////////////////////////////
  12. #ifndef LZMA_BLOCK_DECODER_H
  13. #define LZMA_BLOCK_DECODER_H
  14. #include "common.h"
  15. extern lzma_ret lzma_block_decoder_init(lzma_next_coder *next,
  16. const lzma_allocator *allocator, lzma_block *block);
  17. #endif