diff options
author | LarsAC <LarsAC@e10066b5-e1e2-0310-b819-94efdf66514b> | 2004-02-12 09:15:07 +0000 |
---|---|---|
committer | LarsAC <LarsAC@e10066b5-e1e2-0310-b819-94efdf66514b> | 2004-02-12 09:15:07 +0000 |
commit | 368bacb21c6d0c57c0066ae67c88810b6a79b58d (patch) | |
tree | 789cfb6855f86309856abd8c4825cbe55c652c8e /sh_plugin.c | |
parent | 13414776db3ca8457acef6b3466720507c191946 (diff) | |
download | vdr-plugin-muggle-368bacb21c6d0c57c0066ae67c88810b6a79b58d.tar.gz vdr-plugin-muggle-368bacb21c6d0c57c0066ae67c88810b6a79b58d.tar.bz2 |
Moved filter classes into separate files
git-svn-id: https://vdr-muggle.svn.sourceforge.net/svnroot/vdr-muggle/trunk/muggle-plugin@40 e10066b5-e1e2-0310-b819-94efdf66514b
Diffstat (limited to 'sh_plugin.c')
-rw-r--r-- | sh_plugin.c | 77 |
1 files changed, 0 insertions, 77 deletions
diff --git a/sh_plugin.c b/sh_plugin.c deleted file mode 100644 index eff5cff..0000000 --- a/sh_plugin.c +++ /dev/null @@ -1,77 +0,0 @@ -/* - * plugin.c: The VDR plugin interface - * - * See the main source file 'vdr.c' for copyright information and - * how to reach the author. - * - * $Id: sh_plugin.c,v 1.1 2004/02/01 18:22:53 LarsAC Exp $ - */ - -#include "shell_plugin.h" - -#define LIBVDR_PREFIX "libvdr-" -#define SO_INDICATOR ".so." - -#define MAXPLUGINARGS 1024 -#define HOUSEKEEPINGDELTA 10 // seconds - -// --- cPlugin --------------------------------------------------------------- - -char *cPlugin::configDirectory = NULL; - -cPlugin::cPlugin(void) -{ - name = NULL; -} - -cPlugin::~cPlugin() -{ - // I18nRegister(NULL, Name()); -} - -void cPlugin::SetName(const char *s) -{ - name = s; -} - -const char *cPlugin::CommandLineHelp(void) -{ - return NULL; -} - -bool cPlugin::ProcessArgs(int argc, char *argv[]) -{ - return true; -} - -bool cPlugin::Initialize(void) -{ - return true; -} - -bool cPlugin::Start(void) -{ - return true; -} - -void cPlugin::Housekeeping(void) -{ -} - -const char *cPlugin::MainMenuEntry(void) -{ - return NULL; -} - -cOsdObject *cPlugin::MainMenuAction(void) -{ - return NULL; -} -bool cPlugin::SetupParse(const char *Name, const char *Value) -{ - return false; -} -cMenuSetupPage *cPlugin::SetupMenu(void) -{ - return NULL; -} |