diff options
author | junukn <junukn@1f4bef6d-8e0a-0410-8695-e467da8aaccf> | 2006-05-16 21:25:51 +0000 |
---|---|---|
committer | junukn <junukn@1f4bef6d-8e0a-0410-8695-e467da8aaccf> | 2006-05-16 21:25:51 +0000 |
commit | 1213ecc20171d1ad307b6b5975fad1f5a3e10a64 (patch) | |
tree | e6be506a03473d56559d3531cbe8bcbbca73a5f8 /ffnetdev.h | |
parent | c71f26d9d4acbaeaec72c53622055657bc7b23d7 (diff) | |
download | vdr-plugin-ffnetdev-1213ecc20171d1ad307b6b5975fad1f5a3e10a64.tar.gz vdr-plugin-ffnetdev-1213ecc20171d1ad307b6b5975fad1f5a3e10a64.tar.bz2 |
allow to compile with VDR smaller than 10347
git-svn-id: svn://svn.berlios.de/ffnetdev/trunk@18 1f4bef6d-8e0a-0410-8695-e467da8aaccf
Diffstat (limited to 'ffnetdev.h')
-rw-r--r-- | ffnetdev.h | 9 |
1 files changed, 7 insertions, 2 deletions
@@ -40,13 +40,18 @@ public: virtual cOsdObject *MainMenuAction(void); virtual cMenuSetupPage *SetupMenu(void); virtual bool SetupParse(const char *Name, const char *Value); + +#ifndef VDRVERSNUM +#define VDRVERSNUM 10346 +#endif #if VDRVERSNUM >= 10347 virtual cString Active(void); -#elif +#elseif virtual bool Active(void); #endif - + + void SetPrimaryDevice(); void RestorePrimaryDevice(); cMyRemote *GetRemote() { return m_Remote; } |