diff options
author | horchi <vdr@jwendel.de> | 2017-03-05 14:51:57 +0100 |
---|---|---|
committer | horchi <vdr@jwendel.de> | 2017-03-05 14:51:57 +0100 |
commit | 5eacf5bf36ddbac082a9e40a2bcdfd0f04fd3f9f (patch) | |
tree | 392875cb707b94aaba9d8941113eae35efaf2ec2 /plgconfig.c | |
download | vdr-plugin-epg2vdr-5eacf5bf36ddbac082a9e40a2bcdfd0f04fd3f9f.tar.gz vdr-plugin-epg2vdr-5eacf5bf36ddbac082a9e40a2bcdfd0f04fd3f9f.tar.bz2 |
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; +} |