- fix for ticker #4787
[oscam.git] / module-ird-guess.h
blob75c1c246ec156bfc889044dee6ea5c94be24390e
1 #ifndef MODULE_IRD_GUESS_H
2 #define MODULE_IRD_GUESS_H
4 #ifdef IRDETO_GUESSING
5 int32_t init_irdeto_guess_tab(void);
6 void guess_irdeto(ECM_REQUEST *er);
7 void free_irdeto_guess_tab(void);
8 #else
9 static inline int32_t init_irdeto_guess_tab(void)
11 return 0;
13 static inline void guess_irdeto(ECM_REQUEST *UNUSED(er)) { }
14 static inline void free_irdeto_guess_tab(void) { }
15 #endif
17 #endif