Changed the cPlugin::Start() function to return a boolean value

This commit is contained in:
Klaus Schmidinger
2002-05-12 09:24:45 +02:00
parent 7993e4c06f
commit 01c68def34
10 changed files with 52 additions and 23 deletions

View File

@@ -12,7 +12,7 @@
# See the main source file 'vdr.c' for copyright information and
# how to reach the author.
#
# $Id: newplugin 1.1 2002/05/09 15:12:26 kls Exp $
# $Id: newplugin 1.2 2002/05/12 09:06:43 kls Exp $
$PLUGIN_NAME = $ARGV[0] || die "Usage: newplugin <name>\n";
@@ -158,7 +158,7 @@ public:
virtual const char *Description(void) { return DESCRIPTION; }
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) { return MAINMENUENTRY; }
virtual cOsdMenu *MainMenuAction(void);
virtual cMenuSetupPage *SetupMenu(void);
@@ -189,9 +189,10 @@ bool cPlugin${PLUGIN_CLASS}::ProcessArgs(int argc, char *argv[])
return true;
}
void cPlugin${PLUGIN_CLASS}::Start(void)
bool cPlugin${PLUGIN_CLASS}::Start(void)
{
// Start any background activities the plugin shall perform.
return true;
}
cOsdMenu *cPlugin${PLUGIN_CLASS}::MainMenuAction(void)