summaryrefslogtreecommitdiff
path: root/skinlcarsng.c
diff options
context:
space:
mode:
authorkamel5 <vdr.kamel5 (at) gmx (dot) net>2020-03-28 14:51:21 +0100
committerkamel5 <vdr.kamel5 (at) gmx (dot) net>2020-03-29 11:51:39 +0200
commit883584db77a55610e6003303fb58b5e45bff0886 (patch)
tree1327ce7c50b00f1d2a02f582ca17b0de271ed9d3 /skinlcarsng.c
parent97a994ac366bd3772e3f535a767fffc3bcf1c4ba (diff)
downloadskin-lcarsng-883584db77a55610e6003303fb58b5e45bff0886.tar.gz
skin-lcarsng-883584db77a55610e6003303fb58b5e45bff0886.tar.bz2
Cleanup
Diffstat (limited to 'skinlcarsng.c')
-rw-r--r--skinlcarsng.c29
1 files changed, 2 insertions, 27 deletions
diff --git a/skinlcarsng.c b/skinlcarsng.c
index e6035f4..86f7396 100644
--- a/skinlcarsng.c
+++ b/skinlcarsng.c
@@ -1,21 +1,13 @@
-/*
- * skinflat.c: A plugin for the Video Disk Recorder
- *
- * See the README file for copyright information and how to reach the author.
- *
- * $Id$
- */
#include <getopt.h>
#include <vdr/plugin.h>
#include "config.h"
#include "setup.h"
+#include "lcarsng.h"
#if defined(APIVERSNUM) && APIVERSNUM < 10734
#error "VDR-1.7.34 API version or greater is required!"
#endif
-#include "lcarsng.h"
-
static const char *VERSION = "0.2.7";
static const char *DESCRIPTION = "skin lcarsng";
@@ -53,26 +45,10 @@ cPluginLCARSNG::~cPluginLCARSNG() {
}
const char *cPluginLCARSNG::CommandLineHelp(void) {
- return NULL; //" -l <LOGOPATH>, --logopath=<LOGOPATH> Set directory where Channel Logos are stored.\n";
+ return NULL;
}
bool cPluginLCARSNG::ProcessArgs(int argc, char *argv[]) {
- // Implement command line argument processing here if applicable.
-/* static const struct option long_options[] = {
- { "logopath", required_argument, NULL, 'l' },
- { NULL }
- };
-
- int c;
- while ((c = getopt_long(argc, argv, "l:", long_options, NULL)) != -1) {
- switch (c) {
- case 'l':
-// Config.SetLogoPath(cString(optarg));
- break;
- default:
- return false;
- }
- } */
return true;
}
@@ -114,7 +90,6 @@ cOsdObject *cPluginLCARSNG::MainMenuAction(void) {
cMenuSetupPage *cPluginLCARSNG::SetupMenu(void) {
return new cLCARSNGSetup();
- return NULL;
}
bool cPluginLCARSNG::SetupParse(const char *Name, const char *Value) {