summaryrefslogtreecommitdiff
path: root/plugin.h
diff options
context:
space:
mode:
authorKlaus Schmidinger <vdr@tvdr.de>2003-05-09 15:27:46 +0200
committerKlaus Schmidinger <vdr@tvdr.de>2003-05-09 15:27:46 +0200
commitdc8fd12f91713c2eec49ae38ab34f09fd7e73369 (patch)
treedb9d260ccc995af10dbec6b7e1485679f600a341 /plugin.h
parentaaeaf4582dd40677965f562283cf67cf0986eb65 (diff)
downloadvdr-dc8fd12f91713c2eec49ae38ab34f09fd7e73369.tar.gz
vdr-dc8fd12f91713c2eec49ae38ab34f09fd7e73369.tar.bz2
Introduced cPlugin::Initialize()
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 d3e26d62..0a753faa 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.5 2002/11/16 14:22:24 kls Exp $
+ * $Id: plugin.h 1.6 2003/05/09 14:57:55 kls Exp $
*/
#ifndef __PLUGIN_H
@@ -33,6 +33,7 @@ public:
virtual const char *CommandLineHelp(void);
virtual bool ProcessArgs(int argc, char *argv[]);
+ virtual bool Initialize(void);
virtual bool Start(void);
virtual void Housekeeping(void);
@@ -78,6 +79,7 @@ public:
void SetDirectory(const char *Directory);
void AddPlugin(const char *Args);
bool LoadPlugins(bool Log = false);
+ bool InitializePlugins(void);
bool StartPlugins(void);
void Housekeeping(void);
static bool HasPlugins(void);