blob: ebce5eb574e70fb69cab7a76d7d91a41cc131509 (
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
|
/*
* config.h: 'EnigmaNG' skin for the Video Disk Recorder
*
* See the README file for copyright information and how to reach the author.
*
*/
#ifndef __SKINENIGMA_CONFIG_H
#define __SKINENIGMA_CONFIG_H
struct cEnigmaConfig
{
private:
char logoDir[255];
public:
cEnigmaConfig();
~cEnigmaConfig();
void SetLogoDir(const char *logodirP);
char *GetLogoDir(void) { return logoDir; }
int showAuxInfo;
int showLogo;
int showVps;
int showSymbols;
int showListSymbols;
int showProgressbar;
int cacheSize;
int useChannelId;
int showInfo;
int showRemaining;
int showMarker;
int singleArea;
};
extern cEnigmaConfig EnigmaConfig;
#endif // __SKINENIGMA_CONFIG_H
|