#ifndef EL__ENCODING_LZMA_H #define EL__ENCODING_LZMA_H #include "encoding/encoding.h" #ifdef __cplusplus extern "C" { #endif #ifdef CONFIG_LZMA extern const struct decoding_backend lzma_decoding_backend; const char *get_lzma_version(void); #else #define lzma_decoding_backend dummy_decoding_backend #endif #ifdef __cplusplus } #endif #endif