summaryrefslogtreecommitdiff
path: root/source.h
diff options
context:
space:
mode:
authorJochen Dolze <vdr@dolze.de>2012-04-27 21:19:40 +0200
committerJochen Dolze <vdr@dolze.de>2012-04-27 21:19:40 +0200
commitc9a685f765354edbd90ca999ba9fabcdbd570b5d (patch)
tree2092e8a62e63498573ce71a42823b5a569e2df28 /source.h
parent40889067514769b356eb50d60d6a75889aeb99e3 (diff)
downloadvdr-plugin-xmltv2vdr-c9a685f765354edbd90ca999ba9fabcdbd570b5d.tar.gz
vdr-plugin-xmltv2vdr-c9a685f765354edbd90ca999ba9fabcdbd570b5d.tar.bz2
Changed error output for sqlite3_prepare_v2
Moved codeset recognition to start function
Diffstat (limited to 'source.h')
-rw-r--r--source.h8
1 files changed, 5 insertions, 3 deletions
diff --git a/source.h b/source.h
index 1937a7a..b62c772 100644
--- a/source.h
+++ b/source.h
@@ -71,7 +71,8 @@ private:
cEPGChannels channels;
public:
cEPGSource(const char *Name,const char *ConfDir,const char *EPGFile,
- const char *EPDir, cEPGMappings *Maps, cTEXTMappings *Texts);
+ const char *EPDir, const char *CodeSet, cEPGMappings *Maps,
+ cTEXTMappings *Texts);
~cEPGSource();
bool Trace()
{
@@ -157,8 +158,9 @@ class cEPGSources : public cList<cEPGSource>
{
public:
void ReadIn(const char *ConfDir, const char *EpgFile, const char *EPDir,
- cEPGMappings *EPGMappings, cTEXTMappings *TextMappings,
- const char *SourceOrder, bool Reload=false);
+ const char *CodeSet, cEPGMappings *EPGMappings,
+ cTEXTMappings *TextMappings, const char *SourceOrder,
+ bool Reload=false);
bool RunItNow();
time_t NextRunTime();
bool Exists(const char *Name);