From 2ced4d35c533969fdb0ee6fa963a2fef26c50b79 Mon Sep 17 00:00:00 2001 From: Andreas Mair Date: Wed, 14 Feb 2007 12:24:25 +0100 Subject: 2007-02-14: Version 0.0.1 - Initial release. --- config.h | 35 +++++++++++++++++++++++++++++++++++ 1 file changed, 35 insertions(+) create mode 100644 config.h (limited to 'config.h') 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 -- cgit v1.2.3