revert breaks some stupid old compilers
[oscam.git] / module-dvbapi-azbox.h
blob49fe1996472408402636d52283d8d2d30db18f7f
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, uchar *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