blob: 12a3d524e443d187cff8c39aa88d0ec7ae64d03e (
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
|
/**
* 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;
int DetectionMethod;
static int LastChannel;
cSetupBlock(void);
bool Parse(const char *Name, const char *Value);
};
extern cSetupBlock SetupBlock;
#endif // VDR_BLOCK_CONFIG_H
|