diff options
author | Andreas Mair <amair.sob@googlemail.com> | 2007-02-14 12:24:25 +0100 |
---|---|---|
committer | Andreas Mair <amair.sob@googlemail.com> | 2007-02-14 12:24:25 +0100 |
commit | 2ced4d35c533969fdb0ee6fa963a2fef26c50b79 (patch) | |
tree | b49facd42724fda2ad7c294479373d8f0f08a527 /config.h | |
download | vdr-plugin-skinenigmang-2ced4d35c533969fdb0ee6fa963a2fef26c50b79.tar.gz vdr-plugin-skinenigmang-2ced4d35c533969fdb0ee6fa963a2fef26c50b79.tar.bz2 |
2007-02-14: Version 0.0.1v0.0.1
- Initial release.
Diffstat (limited to 'config.h')
-rw-r--r-- | config.h | 35 |
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 |