diff options
author | Dimitar Petrovski <dimeptr@gmail.com> | 2014-04-14 09:40:50 +0200 |
---|---|---|
committer | Dimitar Petrovski <dimeptr@gmail.com> | 2014-04-14 09:40:50 +0200 |
commit | d7dc6141c91b48c410e9cc5734ca9a2adecc278e (patch) | |
tree | 4f3453ec0402557730fb67d1a65795a8c8a79333 /util.h | |
parent | 69b47ba4bf0195fd6820beb2cf4f7c7ea31f4011 (diff) | |
download | vdr-plugin-eepg-d7dc6141c91b48c410e9cc5734ca9a2adecc278e.tar.gz vdr-plugin-eepg-d7dc6141c91b48c410e9cc5734ca9a2adecc278e.tar.bz2 |
Move Format out of global scope, fixes #1634 and other problems with multiple devices. Thanks to cheesemonster
Diffstat (limited to 'util.h')
-rw-r--r-- | util.h | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -32,7 +32,7 @@ extern int Yesterday; extern int YesterdayEpoch; extern int YesterdayEpochUTC; -extern enum EFormat +enum EFormat { //First all batchmode, load ONCE protocols: MHW1 = 0, @@ -47,7 +47,7 @@ extern enum EFormat EIT, //the highest number of EPG-formats that is supported by this plugin HIGHEST_FORMAT = EIT -} Format; +}; extern cEquivHandler* EquivHandler; |