diff options
Diffstat (limited to 'plgconfig.c')
-rw-r--r-- | plgconfig.c | 36 |
1 files changed, 36 insertions, 0 deletions
diff --git a/plgconfig.c b/plgconfig.c new file mode 100644 index 0000000..4dda3d2 --- /dev/null +++ b/plgconfig.c @@ -0,0 +1,36 @@ +/* + * config.c: + * + * See the README file for copyright information and how to reach the author. + * + */ + +#include "plgconfig.h" + +cEpg2VdrConfig Epg2VdrConfig; + +//*************************************************************************** +// cEpg2VdrConfig +//*************************************************************************** + +cEpg2VdrConfig::cEpg2VdrConfig() + : cEpgConfig() +{ + mainmenuVisible = yes; + mainmenuFullupdate = 0; + blacklist = no; + + activeOnEpgd = no; + scheduleBoot = no; + masterMode = 0; + shareInWeb = yes; + createTimerLocal = no; + useCommonRecFolder = yes; + xchgOkBlue = no; + + replaceScheduleMenu = no; + replaceTimerMenu = no; + userIndex = 0; + *user = 0; + showEmptyChannels = no; +} |