diff options
author | horchi <vdr@jwendel.de> | 2018-02-17 13:30:48 +0100 |
---|---|---|
committer | horchi <vdr@jwendel.de> | 2018-02-17 13:30:48 +0100 |
commit | 4b3df4033c73b48e764d1f893f29a9d6b8883bdc (patch) | |
tree | 1831d6b191fd7e0494ee2d5d5057d09d45848102 /service.h | |
parent | 0bdc56517a2e9512ef0f5156b1ffedc7ab94b3d7 (diff) | |
download | vdr-plugin-epg2vdr-4b3df4033c73b48e764d1f893f29a9d6b8883bdc.tar.gz vdr-plugin-epg2vdr-4b3df4033c73b48e764d1f893f29a9d6b8883bdc.tar.bz2 |
2018-02-17 version 1.1.85 (horchi)\n - added: Timer type and location to timer detail service\n\n1.1.85
Diffstat (limited to 'service.h')
-rw-r--r-- | service.h | 20 |
1 files changed, 11 insertions, 9 deletions
@@ -73,7 +73,7 @@ class cEpgTimer_Interface_V1 : public cTimer }; //*************************************************************************** -// Timer Service Interface +// Timer Service //*************************************************************************** struct cEpgTimer_Service_V1 @@ -82,17 +82,19 @@ struct cEpgTimer_Service_V1 }; //*************************************************************************** -// Has Timer +// Timer Detail Service //*************************************************************************** -struct cHas_Timer_V1 +struct cTimer_Detail_V1 { long eventid; int hastimer; + int local; + char type; }; //*************************************************************************** -// Recording Detail Service Interface +// Recording Detail Service //*************************************************************************** struct cEpgRecording_Details_Service_V1 @@ -101,17 +103,17 @@ struct cEpgRecording_Details_Service_V1 std::string details; }; -#define EPG2VDR_TIMER_UPDATED "Epg2Vdr_Timer_Updated-v1.0" -#define EPG2VDR_TIMER_SERVICE "Epg2Vdr_Timer_Service-v1.0" -#define EPG2VDR_HAS_TIMER "Epg2Vdr_Has_Timer_Service-v1.0" -#define EPG2VDR_REC_DETAIL_SERVICE "Epg2Vdr_RecDetail_Service-v1.0" +#define EPG2VDR_TIMER_UPDATED "Epg2Vdr_Timer_Updated-v1.0" +#define EPG2VDR_TIMER_SERVICE "Epg2Vdr_Timer_Service-v1.0" +#define EPG2VDR_TIMER_DETAIL_SERVICE "Epg2Vdr_Timer_Detail_Service-v1.0" +#define EPG2VDR_REC_DETAIL_SERVICE "Epg2Vdr_RecDetail_Service-v1.0" #ifdef EPG2VDR //*************************************************************************** //*************************************************************************** //*************************************************************************** -// Internal Stuff +// EPG2VDR Internal Stuff //*************************************************************************** //*************************************************************************** |