oscam-2.26.01-11942-802-wit.../module-monitor.h

14 lines
242 B
C
Raw Normal View History

#ifndef MODULE_MONITOR_H_
#define MODULE_MONITOR_H_
#ifdef MODULE_MONITOR
int32_t monitor_send_idx(struct s_client *cl, char *txt);
#else
int32_t monitor_send_idx(struct s_client *UNUSED(cl), char *UNUSED(txt))
{
return 0;
}
#endif
#endif