- fix for ticker #4787
[oscam.git] / module-cccam-cacheex.h
blob526653f9b3b0d8b2afd49f8f7846171040b33987
1 #ifndef MODULE_CCCAM_CACHEEX_H_
2 #define MODULE_CCCAM_CACHEEX_H_
4 #ifdef CS_CACHEEX
5 void cc_cacheex_filter_out(struct s_client *cl);
6 void cc_cacheex_filter_in(struct s_client *cl, uint8_t *buf);
7 void cc_cacheex_push_in(struct s_client *cl, uint8_t *buf);
8 void cc_cacheex_module_init(struct s_module *ph);
9 #else
10 static inline void cc_cacheex_filter_out(struct s_client *UNUSED(cl)) { }
11 static inline void cc_cacheex_filter_in(struct s_client *UNUSED(cl), uint8_t *UNUSED(buf)) { }
12 static inline void cc_cacheex_push_in(struct s_client *UNUSED(cl), uint8_t *UNUSED(buf)) { }
13 static inline void cc_cacheex_module_init(struct s_module *UNUSED(ph)) { }
14 #endif
16 #endif