summaryrefslogtreecommitdiff
path: root/plugin.h
diff options
context:
space:
mode:
authorKlaus Schmidinger <vdr@tvdr.de>2006-04-15 11:18:36 +0200
committerKlaus Schmidinger <vdr@tvdr.de>2006-04-15 11:18:36 +0200
commit4ba450b7372709507a8602ae5c80b47ef39b6d38 (patch)
tree325667a6b015156e4e25c5f14bf6b02959bff064 /plugin.h
parent3d8a9c965366f35ceeadcceb9744ef0fc8f26455 (diff)
downloadvdr-4ba450b7372709507a8602ae5c80b47ef39b6d38.tar.gz
vdr-4ba450b7372709507a8602ae5c80b47ef39b6d38.tar.bz2
Implemented cPlugin::Active()
Diffstat (limited to 'plugin.h')
-rw-r--r--plugin.h4
1 files changed, 3 insertions, 1 deletions
diff --git a/plugin.h b/plugin.h
index 285d0dc2..d113c8eb 100644
--- a/plugin.h
+++ b/plugin.h
@@ -4,7 +4,7 @@
* See the main source file 'vdr.c' for copyright information and
* how to reach the author.
*
- * $Id: plugin.h 1.11 2006/04/14 11:42:48 kls Exp $
+ * $Id: plugin.h 1.12 2006/04/15 10:30:33 kls Exp $
*/
#ifndef __PLUGIN_H
@@ -39,6 +39,7 @@ public:
virtual bool Start(void);
virtual void Stop(void);
virtual void Housekeeping(void);
+ virtual cString Active(void);
virtual const char *MainMenuEntry(void);
virtual cOsdObject *MainMenuAction(void);
@@ -89,6 +90,7 @@ public:
bool InitializePlugins(void);
bool StartPlugins(void);
void Housekeeping(void);
+ static bool Active(const char *Prompt = NULL);
static bool HasPlugins(void);
static cPlugin *GetPlugin(int Index);
static cPlugin *GetPlugin(const char *Name);