diff options
Diffstat (limited to 'timers.h')
-rw-r--r-- | timers.h | 8 |
1 files changed, 7 insertions, 1 deletions
@@ -35,9 +35,15 @@ namespace vdrlive { SortedTimers(); SortedTimers( SortedTimers const& ); + cMutex m_mutex; + +#if VDRVERSNUM >= 20301 + cStateKey m_TimersStateKey; +#else int m_state; +#endif - void ReloadTimers( bool initial = false ); + void ReloadTimers(); }; class TimerManager: public cMutex |