simple_decoder.h 553 B

123456789101112131415161718192021
  1. // SPDX-License-Identifier: 0BSD
  2. ///////////////////////////////////////////////////////////////////////////////
  3. //
  4. /// \file simple_decoder.h
  5. /// \brief Properties decoder for simple filters
  6. //
  7. // Author: Lasse Collin
  8. //
  9. ///////////////////////////////////////////////////////////////////////////////
  10. #ifndef LZMA_SIMPLE_DECODER_H
  11. #define LZMA_SIMPLE_DECODER_H
  12. #include "simple_coder.h"
  13. extern lzma_ret lzma_simple_props_decode(
  14. void **options, const lzma_allocator *allocator,
  15. const uint8_t *props, size_t props_size);
  16. #endif