2008-02-11 15:30:14 +01:00
|
|
|
#ifndef EL__ENCODING_DEFLATE_H
|
|
|
|
#define EL__ENCODING_DEFLATE_H
|
2005-09-15 15:58:31 +02:00
|
|
|
|
|
|
|
#include "encoding/encoding.h"
|
|
|
|
|
|
|
|
#ifdef CONFIG_GZIP
|
2008-02-11 15:30:14 +01:00
|
|
|
extern const struct decoding_backend deflate_decoding_backend;
|
2007-02-24 21:42:56 +02:00
|
|
|
extern const struct decoding_backend gzip_decoding_backend;
|
2005-09-15 15:58:31 +02:00
|
|
|
#else
|
2008-02-11 15:30:14 +01:00
|
|
|
#define deflate_decoding_backend dummy_decoding_backend
|
2005-09-15 15:58:31 +02:00
|
|
|
#define gzip_decoding_backend dummy_decoding_backend
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#endif
|