diff options
author | Martin Schirrmacher <vdr.zaphistory@schirrmacher.eu> | 2015-12-09 20:09:19 +0100 |
---|---|---|
committer | Martin Schirrmacher <vdr.zaphistory@schirrmacher.eu> | 2015-12-09 20:09:19 +0100 |
commit | 484b48a61c841a72c12c3a347bbafd0b96826da3 (patch) | |
tree | 09d1e1825125d11d33529e275552563795d049e8 /zaplist.c | |
parent | 111b0cc69414d8025a66b3325a65d7286be87df7 (diff) | |
download | vdr-plugin-zaphistory-484b48a61c841a72c12c3a347bbafd0b96826da3.tar.gz vdr-plugin-zaphistory-484b48a61c841a72c12c3a347bbafd0b96826da3.tar.bz2 |
Diffstat (limited to 'zaplist.c')
-rw-r--r-- | zaplist.c | 9 |
1 files changed, 8 insertions, 1 deletions
@@ -13,7 +13,11 @@ cZapHistory ZapHistory; +#if APIVERSNUM >= 20301 +cZapHistoryChannel* cZapHistory::FindChannel(const cChannel *channel) { +#else cZapHistoryChannel* cZapHistory::FindChannel(cChannel *channel) { +#endif if (channel == NULL) return NULL; @@ -100,8 +104,11 @@ void cZapHistory::UpdateWatchTime() { void cZapHistory::ViewContinue() { lastSwitch = time(NULL); } - +#if APIVERSNUM >= 20301 +void cZapHistory::ChannelSwitch( const cChannel *channel ) { +#else void cZapHistory::ChannelSwitch( cChannel *channel ) { +#endif cZapHistoryChannel *zapChan = FindChannel( channel ); // Channel not in history management |