/* * config.h: TVM2VDR plugin for the Video Disk Recorder * * See the README file for copyright information and how to reach the author. * * $Id: config.h,v 1.3 2012/10/15 09:24:22 wendel Exp $ */ #ifndef __TVM2VDR_CONFIG_H #define __TVM2VDR_CONFIG_H #include #include #include #include struct cTVM2VDRConfig { public: cTVM2VDRConfig(void); char username[30]; char password[30]; int updatetime; int autoupdate; int mainmenuVisible; int mainmenuFullupdate; int getepgimages; int useproxy; char httpproxy[256]; int days; int upddays; int maximagesperevent; int loglevel; int epgImageSize; char seriesUrl[500+1]; int storeSeriesToFs; int seriesPort; int seriesEnabled; int blacklist; // to enable noepg feature }; extern cTVM2VDRConfig TVM2VDRConfig; #endif // __TVM2VDR_CONFIG_H