summaryrefslogtreecommitdiff
path: root/pvrinput.h
blob: 991b4ffbcd9a17d3fbb210c367b00de3eb2e562b (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
#ifndef _PVRINPUT_PLUGIN_H_
#define _PVRINPUT_PLUGIN_H_

#include "common.h"

class cPluginPvrInput : public cPlugin {
private:
public:
  cPluginPvrInput(void);
  virtual ~cPluginPvrInput();
  virtual const char * Version(void);
  virtual const char * Description(void);
  virtual const char * CommandLineHelp(void);
  virtual bool ProcessArgs(int argc, char * argv[]);
  virtual bool Initialize(void);
  virtual bool Start(void);
  virtual void Stop(void);
  virtual void Housekeeping(void);
  virtual const char * MainMenuEntry(void);
  virtual cOsdObject * MainMenuAction(void);
  virtual cMenuSetupPage * SetupMenu(void);
  virtual bool SetupParse(const char * Name, const char * Value);
};

extern cPluginPvrInput * PluginPvrInput;

#endif