summaryrefslogtreecommitdiff
path: root/remote.c
diff options
context:
space:
mode:
Diffstat (limited to 'remote.c')
-rw-r--r--remote.c21
1 files changed, 17 insertions, 4 deletions
diff --git a/remote.c b/remote.c
index 4504533..c0b9286 100644
--- a/remote.c
+++ b/remote.c
@@ -4,7 +4,7 @@
* See the main source file 'vdr.c' for copyright information and
* how to reach the author.
*
- * $Id: remote.c 1.49 2006/01/29 14:43:07 kls Exp $
+ * $Id: remote.c 1.50 2006/04/17 08:58:28 kls Exp $
*/
#include "remote.h"
@@ -145,10 +145,23 @@ bool cRemote::Put(const char *Code, bool Repeat, bool Release)
return false;
}
-void cRemote::CallPlugin(const char *Plugin)
+bool cRemote::CallPlugin(const char *Plugin)
{
- plugin = Plugin;
- Put(k_Plugin);
+ cMutexLock MutexLock(&mutex);
+ if (!plugin) {
+ plugin = Plugin;
+ Put(k_Plugin);
+ return true;
+ }
+ return false;
+}
+
+const char *cRemote::GetPlugin(void)
+{
+ cMutexLock MutexLock(&mutex);
+ const char *p = plugin;
+ plugin = NULL;
+ return p;
}
bool cRemote::HasKeys(void)