diff options
author | Sascha Volkenandt <sascha (at) akv-soft (dot) de> | 2007-05-31 18:29:40 +0000 |
---|---|---|
committer | Sascha Volkenandt <sascha (at) akv-soft (dot) de> | 2007-05-31 18:29:40 +0000 |
commit | 1f3a7fee17a7a48b77deb4212660a4b0648d543d (patch) | |
tree | 8460f46344f522d79407f92dbdc87f1d1be02857 /timers.h | |
parent | 2b60a30945a8d4a0c517844f20808b4c1a2ad33b (diff) | |
download | vdr-plugin-live-1f3a7fee17a7a48b77deb4212660a4b0648d543d.tar.gz vdr-plugin-live-1f3a7fee17a7a48b77deb4212660a4b0648d543d.tar.bz2 |
- [0000340] moved timer deletion and toggling to foreground thread
- now stopping recording in case of ongoing recording
Diffstat (limited to 'timers.h')
-rw-r--r-- | timers.h | 3 |
1 files changed, 3 insertions, 0 deletions
@@ -4,6 +4,7 @@ #include <list> #include <string> #include <vdr/channels.h> +#include <vdr/menu.h> #include <vdr/timers.h> #include <vdr/thread.h> #include "live.h" @@ -63,6 +64,8 @@ private: void DoUpdateTimers(); void DoInsertTimer( TimerPair& timerData ); void DoUpdateTimer( TimerPair& timerData ); + void DoDeleteTimer( TimerPair& timerData ); + void DoToggleTimer( TimerPair& timerData ); void StoreError( TimerPair const& timerData, std::string const& error ); std::string GetError( TimerPair const& timerData ); |