diff options
author | lordjaxom <lordjaxom> | 2004-05-23 00:35:46 +0000 |
---|---|---|
committer | lordjaxom <lordjaxom> | 2004-05-23 00:35:46 +0000 |
commit | d309055320433e5fd899de53dc688d679609e6db (patch) | |
tree | ee3c3c97b3881f1e35e0da745b9571d11c0b6ac2 /text2skin.c | |
download | vdr-plugin-text2skin-d309055320433e5fd899de53dc688d679609e6db.tar.gz vdr-plugin-text2skin-d309055320433e5fd899de53dc688d679609e6db.tar.bz2 |
- Initial revision.v0.0.1-pre1
Diffstat (limited to 'text2skin.c')
-rw-r--r-- | text2skin.c | 51 |
1 files changed, 51 insertions, 0 deletions
diff --git a/text2skin.c b/text2skin.c new file mode 100644 index 0000000..19777aa --- /dev/null +++ b/text2skin.c @@ -0,0 +1,51 @@ +/* + * text2skin.c: A plugin for the Video Disk Recorder + * + * See the README file for copyright information and how to reach the author. + * + * $Id: text2skin.c,v 1.2 2004/05/23 00:23:12 lordjaxom Exp $ + */ + +#include <vdr/plugin.h> +#include "loader.h" + +static const char *VERSION = "0.0.1-pre1"; +static const char *DESCRIPTION = "Loader for text-based skins"; + +class cText2SkinPlugin : public cPlugin { +private: +public: + cText2SkinPlugin(void); + virtual ~cText2SkinPlugin(); + virtual const char *Version(void) { return VERSION; } + virtual const char *Description(void) { return DESCRIPTION; } + virtual bool Start(void); + virtual cMenuSetupPage *SetupMenu(void); + virtual bool SetupParse(const char *Name, const char *Value); + }; + +cText2SkinPlugin::cText2SkinPlugin(void) +{ +} + +cText2SkinPlugin::~cText2SkinPlugin() +{ +} + +bool cText2SkinPlugin::Start(void) +{ + cText2SkinLoader::Start(); + return true; +} + +cMenuSetupPage *cText2SkinPlugin::SetupMenu(void) +{ + return NULL; +} + +bool cText2SkinPlugin::SetupParse(const char *Name, const char *Value) +{ + return false; +} + +VDRPLUGINCREATOR(cText2SkinPlugin); // Don't touch this! |