- fix Building without Nagra not possible at Nagra_Merlin https://trac.streamboard...
[oscam.git] / module-dvbapi-azbox.h
blob40e9133ffa0da2c26f53999293fc848c82b4e385
1 #ifndef _MODULE_AZBOX_H_
2 #define _MODULE_AZBOX_H_
4 void azbox_send_dcw(struct s_client *client, ECM_REQUEST *er);
5 void *azbox_handler(struct s_client *cl, uint8_t *mbuf, int32_t module_idx);
7 #if defined(HAVE_DVBAPI) && defined(WITH_AZBOX)
8 void azbox_init(void);
9 void azbox_close(void);
10 #else
11 static inline void azbox_init(void) { }
12 static inline void azbox_close(void) { }
13 #endif
15 #endif