2006-03-25 11:40:09 +01:00
|
|
|
#ifndef EL__ENCODING_LZMA_H
|
|
|
|
#define EL__ENCODING_LZMA_H
|
|
|
|
|
|
|
|
#include "encoding/encoding.h"
|
|
|
|
|
2020-10-05 20:14:55 +02:00
|
|
|
#ifdef __cplusplus
|
|
|
|
extern "C" {
|
|
|
|
#endif
|
|
|
|
|
2006-03-25 11:40:09 +01:00
|
|
|
#ifdef CONFIG_LZMA
|
2007-02-24 21:42:56 +02:00
|
|
|
extern const struct decoding_backend lzma_decoding_backend;
|
2021-12-27 17:02:58 +01:00
|
|
|
const char *get_lzma_version(void);
|
2006-03-25 11:40:09 +01:00
|
|
|
#else
|
|
|
|
#define lzma_decoding_backend dummy_decoding_backend
|
|
|
|
#endif
|
|
|
|
|
2020-10-05 20:14:55 +02:00
|
|
|
#ifdef __cplusplus
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
2006-03-25 11:40:09 +01:00
|
|
|
#endif
|