diff options
Diffstat (limited to 'plgconfig.h')
-rw-r--r-- | plgconfig.h | 44 |
1 files changed, 44 insertions, 0 deletions
diff --git a/plgconfig.h b/plgconfig.h new file mode 100644 index 0000000..fce7b0d --- /dev/null +++ b/plgconfig.h @@ -0,0 +1,44 @@ +/* + * plgconfig.h: + * + * See the README file for copyright information and how to reach the author. + * + * $Id: config.h,v 1.2 2012/10/26 08:44:13 wendel Exp $ + */ + +#ifndef __EPG2VDR_CONFIG_H +#define __EPG2VDR_CONFIG_H + +#include "lib/config.h" + +//*************************************************************************** +// Config +//*************************************************************************** + +struct cEpg2VdrConfig : public cEpgConfig +{ + public: + + cEpg2VdrConfig(); + + int mainmenuVisible; + int mainmenuFullupdate; + int activeOnEpgd; + int scheduleBoot; + int blacklist; // to enable noepg feature + int masterMode; + int shareInWeb; // 'am verbund teilnehmen' + int createTimerLocal; + int useCommonRecFolder; // NAS + int xchgOkBlue; + + int replaceScheduleMenu; + int replaceTimerMenu; + int userIndex; + char user[100+TB]; + int showEmptyChannels; +}; + +extern cEpg2VdrConfig Epg2VdrConfig; + +#endif // __EPG2VDR_CONFIG_H |