summaryrefslogtreecommitdiff
path: root/ffnetdev.c
diff options
context:
space:
mode:
Diffstat (limited to 'ffnetdev.c')
-rw-r--r--ffnetdev.c12
1 files changed, 11 insertions, 1 deletions
diff --git a/ffnetdev.c b/ffnetdev.c
index 5a302f1..0687201 100644
--- a/ffnetdev.c
+++ b/ffnetdev.c
@@ -127,9 +127,19 @@ bool cPluginFFNetDev::ProcessArgs(int argc, char *argv[])
return true;
}
+#if VDRVERSNUM >= 10347
+cString cPluginFFNetDev::Active(void) {
+
+ if(cOSDWorker::Active() || cTSWorker::Active())
+ return tr("ffnetdev is running");
+
+ return NULL;
+}
+#elif
bool cPluginFFNetDev::Active(void) {
- return (cOSDWorker::Active() || cTSWorker::Active());
+ return (cOSDWorker::Active() || cTSWorker::Active());
}
+#endif
bool cPluginFFNetDev::Start(void)
{