diff options
author | chriszero <zerov83@gmail.com> | 2015-01-12 21:06:11 +0100 |
---|---|---|
committer | chriszero <zerov83@gmail.com> | 2015-01-12 21:06:11 +0100 |
commit | 243e2d5097351046aa07f3c0af6ab0bb7c91ed2e (patch) | |
tree | 4a84670cbd017bb50a33b811edd48cc8a9718eb6 /plex.h | |
parent | e0ad2e8c384b0ffab2c4283ea26efede6383dddd (diff) | |
download | vdr-plugin-plex-243e2d5097351046aa07f3c0af6ab0bb7c91ed2e.tar.gz vdr-plugin-plex-243e2d5097351046aa07f3c0af6ab0bb7c91ed2e.tar.bz2 |
Cleanups
Diffstat (limited to 'plex.h')
-rw-r--r-- | plex.h | 7 |
1 files changed, 3 insertions, 4 deletions
@@ -24,6 +24,9 @@ #include <iterator> #include <algorithm> +static const char *DESCRIPTION = "Plex for VDR Plugin"; +static const char *MAINMENUENTRY = "Plex for VDR"; + /** ** Device plugin remote class. */ @@ -202,7 +205,6 @@ class cMyPlugin:public cPlugin virtual ~ cMyPlugin(void); virtual const char *Version(void); virtual const char *Description(void); - virtual const char *CommandLineHelp(void); virtual bool ProcessArgs(int, char *[]); virtual bool Initialize(void); virtual void MainThreadHook(void); @@ -210,9 +212,6 @@ class cMyPlugin:public cPlugin virtual cOsdObject *MainMenuAction(void); virtual cMenuSetupPage *SetupMenu(void); virtual bool SetupParse(const char *, const char *); - virtual bool Service(const char *, void * = NULL); - virtual const char **SVDRPHelpPages(void); - virtual cString SVDRPCommand(const char *, const char *, int &); }; |