blob: 611c0886f6fd8fb28c0b8910612fd93f5af70ad5 (
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
|
/**
* based on config.h,v 1.1.1.1 2006/02/26 14:11:02 lordjaxom
*
* version by Midas
*
*/
#include <vdr/channels.h>
#ifndef VDR_BLOCK_CONFIG_H
#define VDR_BLOCK_CONFIG_H
class cSetupBlock {
public:
int HideMenuEntry;
static int MessageTimeout;
static int DetectionMethod;
static int LastAcceptableChannel;
static int ParentalGuidance;
static int OkAllowed;
static int FuzzyFallback;
static char ReplayingName[256];
static cChannel *LastcChannel;
static int user_direction;
cSetupBlock(void);
bool Parse(const char *Name, const char *Value);
};
extern cSetupBlock SetupBlock;
#endif // VDR_BLOCK_CONFIG_H
|