diff options
author | Dimitar Petrovski <dimeptr@gmail.com> | 2012-05-23 22:07:47 +0200 |
---|---|---|
committer | Dimitar Petrovski <dimeptr@gmail.com> | 2012-05-23 22:07:47 +0200 |
commit | 7089617d8186143cfe946596dfafd650cb3028f9 (patch) | |
tree | 2614d69c4d9f7f765a893cddbba9bf0bae92df42 /util.h | |
parent | 07e0eccce3b565fb13f2d675f6eddc38c4917b89 (diff) | |
download | vdr-plugin-eepg-7089617d8186143cfe946596dfafd650cb3028f9.tar.gz vdr-plugin-eepg-7089617d8186143cfe946596dfafd650cb3028f9.tar.bz2 |
move utilities to separate files
Diffstat (limited to 'util.h')
-rw-r--r-- | util.h | 24 |
1 files changed, 24 insertions, 0 deletions
@@ -0,0 +1,24 @@ +/* + * util.h + * + * Created on: 23.5.2012 + * Author: d.petrovski + */ + +#ifndef UTIL_H_ +#define UTIL_H_ + +int AvailableSources[32]; +int NumberOfAvailableSources; + +int Yesterday; +int YesterdayEpoch; +int YesterdayEpochUTC; + +cChannel *GetChannelByID(tChannelID & channelID, bool searchOtherPos); +time_t LocalTime2UTC (time_t t); +time_t UTC2LocalTime (time_t t); +void GetLocalTimeOffset (void); +void CleanString (unsigned char *String); + +#endif /* UTIL_H_ */ |