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