blob: 3fb8d8c5e0dd93adc3c713ad97853caa8674db69 (
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
|
/**
* based on config.h,v 1.1.1.1 2006/02/26 14:11:02 lordjaxom
*
* version by Midas
*
*/
#ifndef VDR_BLOCK_CONFIG_H
#define VDR_BLOCK_CONFIG_H
class cSetupBlock {
public:
int HideMenuEntry;
int MessageTimeout;
static int DetectionMethod;
static int LastChannel;
int ExtraOptionsVisible;
static int OkAllowed;
cSetupBlock(void);
bool Parse(const char *Name, const char *Value);
};
extern cSetupBlock SetupBlock;
#endif // VDR_BLOCK_CONFIG_H
|