blob: 935873a355e952de1f0651b66f98f5986a8e7838 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
/*
* $Id: setup.h,v 1.1.1.1 2004/11/19 16:45:31 lordjaxom Exp $
*/
#ifndef VDR_TEXT2SKIN_SETUP_H
#define VDR_TEXT2SKIN_SETUP_H
#include "common.h"
class cText2SkinSetup {
public:
cText2SkinSetup(void);
bool SetupParse(const char *Name, const char *Value);
int MaxCacheFill;
};
extern cText2SkinSetup Text2SkinSetup;
#endif // VDR_TEXT2SKIN_SETUP_H
|