summaryrefslogtreecommitdiff
path: root/config.h
diff options
context:
space:
mode:
Diffstat (limited to 'config.h')
-rw-r--r--config.h35
1 files changed, 35 insertions, 0 deletions
diff --git a/config.h b/config.h
new file mode 100644
index 0000000..b1ec6b0
--- /dev/null
+++ b/config.h
@@ -0,0 +1,35 @@
+/*
+ * config.h: 'EnigmaNG' skin for the Video Disk Recorder
+ *
+ * See the README file for copyright information and how to reach the author.
+ *
+ */
+
+#ifndef __SKINENIGMA_CONFIG_H
+#define __SKINENIGMA_CONFIG_H
+
+struct cEnigmaConfig
+{
+private:
+ char logoDir[255];
+public:
+ cEnigmaConfig();
+ ~cEnigmaConfig();
+ void SetLogoDir(const char *logodirP);
+ char *GetLogoDir(void) { return logoDir; }
+ int showAuxInfo;
+ int showLogo;
+ int showVps;
+ int showSymbols;
+ int showListSymbols;
+ int showProgressbar;
+ int cacheSize;
+ int useChannelId;
+ int showInfo;
+ int showRemaining;
+ int showMarker;
+};
+
+extern cEnigmaConfig EnigmaConfig;
+
+#endif // __SKINENIGMA_CONFIG_H