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.h | |
download | vdr-plugin-epg2vdr-5eacf5bf36ddbac082a9e40a2bcdfd0f04fd3f9f.tar.gz vdr-plugin-epg2vdr-5eacf5bf36ddbac082a9e40a2bcdfd0f04fd3f9f.tar.bz2 |
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 |