summaryrefslogtreecommitdiff
path: root/text2skin.c
blob: c445bc610c236b4f6bf459ecb68b59d853ba89e2 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
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.3 2004/05/23 19:20:26 lordjaxom Exp $
 */

#include <vdr/plugin.h>
#include "loader.h"

static const char *VERSION        = "0.0.1-pre2";
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!