blob: 670db11a7dfdf21edf2aff1888434f54d2d35a81 (
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
|
/*
* config.h: Global configuration and user settings
*
* See the README file for copyright information and how to reach the author.
*
*/
#ifndef __EPGFIXER_CONFIG_H_
#define __EPGFIXER_CONFIG_H_
struct cEpgfixerSetup
{
int quotedshorttext;
int blankbeforedescription;
int repeatedtitle;
int doublequotedshorttext;
int removeformatting;
int longshorttext;
int equalshorttextanddescription;
int nobackticks;
int components;
int striphtml;
cEpgfixerSetup();
};
// Global instance
extern cEpgfixerSetup EpgfixerSetup;
#endif //__EPGFIXER_CONFIG_H_
|