repo.or.cz
/
oscam.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
- fix Building without Nagra not possible at Nagra_Merlin https://trac.streamboard...
[oscam.git]
/
module-monitor.h
blob
c9d73b2f2414d323f7c5a523c12184ab8ffcd881
1
#ifndef MODULE_MONITOR_H_
2
#define MODULE_MONITOR_H_
3
4
#ifdef MODULE_MONITOR
5
int32_t
monitor_send_idx
(
struct
s_client
*
cl
,
char
*
txt
);
6
#else
7
int32_t
monitor_send_idx
(
struct
s_client
*
UNUSED
(
cl
),
char
*
UNUSED
(
txt
))
8
{
9
return
0
;
10
}
11
#endif
12
13
#endif