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