diff options
author | Klaus Schmidinger <vdr@tvdr.de> | 2003-05-09 15:27:46 +0200 |
---|---|---|
committer | Klaus Schmidinger <vdr@tvdr.de> | 2003-05-09 15:27:46 +0200 |
commit | dc8fd12f91713c2eec49ae38ab34f09fd7e73369 (patch) | |
tree | db9d260ccc995af10dbec6b7e1485679f600a341 /plugin.h | |
parent | aaeaf4582dd40677965f562283cf67cf0986eb65 (diff) | |
download | vdr-dc8fd12f91713c2eec49ae38ab34f09fd7e73369.tar.gz vdr-dc8fd12f91713c2eec49ae38ab34f09fd7e73369.tar.bz2 |
Introduced cPlugin::Initialize()
Diffstat (limited to 'plugin.h')
-rw-r--r-- | plugin.h | 4 |
1 files changed, 3 insertions, 1 deletions
@@ -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); |