diff options
author | Klaus Schmidinger <vdr@tvdr.de> | 2012-02-20 15:37:01 +0100 |
---|---|---|
committer | Klaus Schmidinger <vdr@tvdr.de> | 2012-02-20 15:37:01 +0100 |
commit | f6cdae50ef85678c06e3bef87a79510a88b956c4 (patch) | |
tree | 37359de4977b76ce52555802986484d7301d85ee /timers.h | |
parent | 5b2bdf20495b23773123e485878a27b3ea2a01e6 (diff) | |
download | vdr-f6cdae50ef85678c06e3bef87a79510a88b956c4.tar.gz vdr-f6cdae50ef85678c06e3bef87a79510a88b956c4.tar.bz2 |
Added several cTimer::Set...() functions
Diffstat (limited to 'timers.h')
-rw-r--r-- | timers.h | 8 |
1 files changed, 7 insertions, 1 deletions
@@ -4,7 +4,7 @@ * See the main source file 'vdr.c' for copyright information and * how to reach the author. * - * $Id: timers.h 2.1 2011/08/06 12:59:32 kls Exp $ + * $Id: timers.h 2.2 2012/02/20 15:24:28 kls Exp $ */ #ifndef __TIMERS_H @@ -86,7 +86,13 @@ public: void SetRecording(bool Recording); void SetPending(bool Pending); void SetInVpsMargin(bool InVpsMargin); + void SetDay(time_t Day); + void SetWeekDays(int WeekDays); + void SetStart(int Start); + void SetStop(int Stop); void SetPriority(int Priority); + void SetLifetime(int Lifetime); + void SetAux(const char *Aux); void SetDeferred(int Seconds); void SetFlags(uint Flags); void ClrFlags(uint Flags); |