blob: daff92d4297e920fb550c9fe590b65fd4f3054f5 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
|
/*
* 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;
int extendedEpgData2Aux;
int switchTimerNotifyTime;
};
extern cEpg2VdrConfig Epg2VdrConfig;
#endif // __EPG2VDR_CONFIG_H
|