diff options
Diffstat (limited to 'xmltv2vdr.h')
-rw-r--r-- | xmltv2vdr.h | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/xmltv2vdr.h b/xmltv2vdr.h index a26c009..e140160 100644 --- a/xmltv2vdr.h +++ b/xmltv2vdr.h @@ -26,6 +26,14 @@ static const char *DESCRIPTION = trNOOP("Imports xmltv epg into vdr"); int ioprio_set(int which, int who, int ioprio); +class cSVDRPMsg +{ +private: + bool readreply(int fd); +public: + bool Send(const char *format, ...); +}; + class cGlobals { private: @@ -35,6 +43,7 @@ private: char *epcodeset; char *imgdir; char *codeset; + bool epgsearchexists; int imgdelafter; cEPGMappings epgmappings; cTEXTMappings textmappings; @@ -99,6 +108,10 @@ public: { return imgdelafter; } + bool EPGSearchExists() + { + return epgsearchexists; + } }; #if VDRVERSNUM < 10726 && !EPGHANDLER |