diff options
author | Dimitar Petrovski <dimeptr@gmail.com> | 2012-06-01 01:17:44 +0200 |
---|---|---|
committer | Dimitar Petrovski <dimeptr@gmail.com> | 2012-06-01 01:17:44 +0200 |
commit | 15fee6896cb3cc24c0ae14106efdbc328a07ff79 (patch) | |
tree | d65b49dfe77313a0a4520b10956bf6babaca98bf /util.h | |
parent | 80c9c7fa84f17dbe2779c2a27dac82a001e33101 (diff) | |
download | vdr-plugin-eepg-15fee6896cb3cc24c0ae14106efdbc328a07ff79.tar.gz vdr-plugin-eepg-15fee6896cb3cc24c0ae14106efdbc328a07ff79.tar.bz2 |
fix compile, but can not lock schedule
Diffstat (limited to 'util.h')
-rw-r--r-- | util.h | 10 |
1 files changed, 5 insertions, 5 deletions
@@ -13,12 +13,12 @@ struct tChannelID; namespace util { -int AvailableSources[32]; -int NumberOfAvailableSources = 0; +extern int AvailableSources[32]; +extern int NumberOfAvailableSources; -int Yesterday; -int YesterdayEpoch; -int YesterdayEpochUTC; +extern int Yesterday; +extern int YesterdayEpoch; +extern int YesterdayEpochUTC; cChannel *GetChannelByID(tChannelID & channelID, bool searchOtherPos); time_t LocalTime2UTC (time_t t); |