blob: 867255bd7b8bba90f77eb20028bb5c3a59d04302 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
#ifndef __ZAPPILOTCONFIG_H
#define __ZAPPILOTCONFIG_H
#include <vdr/plugin.h>
struct sZappilotConfig
{
int closeonswitch;
int hidemenu;
int fastbrowse;
int fastbrowsealt;
int switchtimer;
int switchminsbefore;
cPlugin* pEPGSearch;
};
extern sZappilotConfig config;
// #define DEBUG
#endif //__ZAPPILOTCONFIG_H
|