summaryrefslogtreecommitdiff
path: root/plugin.h
diff options
context:
space:
mode:
authorKlaus Schmidinger <vdr@tvdr.de>2002-05-12 09:24:45 +0200
committerKlaus Schmidinger <vdr@tvdr.de>2002-05-12 09:24:45 +0200
commit01c68def34bc8b1d2a2b5ac0a21c6eb4a13e04e3 (patch)
treebce1156fd51546cb0909f3c5f88ffdef563d177e /plugin.h
parent7993e4c06f845e0a884bb68015e39f549f202ad2 (diff)
downloadvdr-01c68def34bc8b1d2a2b5ac0a21c6eb4a13e04e3.tar.gz
vdr-01c68def34bc8b1d2a2b5ac0a21c6eb4a13e04e3.tar.bz2
Changed the cPlugin::Start() function to return a boolean value
Diffstat (limited to 'plugin.h')
-rw-r--r--plugin.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/plugin.h b/plugin.h
index 99f330d4..827df23e 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.1 2002/05/09 10:16:09 kls Exp $
+ * $Id: plugin.h 1.2 2002/05/12 09:05:06 kls Exp $
*/
#ifndef __PLUGIN_H
@@ -32,7 +32,7 @@ public:
virtual const char *CommandLineHelp(void);
virtual bool ProcessArgs(int argc, char *argv[]);
- virtual void Start(void);
+ virtual bool Start(void);
virtual const char *MainMenuEntry(void);
virtual cOsdMenu *MainMenuAction(void);
@@ -71,7 +71,7 @@ public:
void SetDirectory(const char *Directory);
void AddPlugin(const char *Args);
bool LoadPlugins(bool Log = false);
- void StartPlugins(void);
+ bool StartPlugins(void);
static bool HasPlugins(void);
static cPlugin *GetPlugin(int Index);
static cPlugin *GetPlugin(const char *Name);