diff options
author | Klaus Schmidinger <vdr@tvdr.de> | 2005-05-07 11:10:56 +0200 |
---|---|---|
committer | Klaus Schmidinger <vdr@tvdr.de> | 2005-05-07 11:10:56 +0200 |
commit | 8b137f8ce5b901a7ef9193644832827339deee2f (patch) | |
tree | dd21d564186dccf77ac27baf3c403dabaea31edf /timers.h | |
parent | 9f7166a8915596fca3656d4b2627dd0bcc27ddaa (diff) | |
download | vdr-8b137f8ce5b901a7ef9193644832827339deee2f.tar.gz vdr-8b137f8ce5b901a7ef9193644832827339deee2f.tar.bz2 |
Added status flag for timers that are currently recording
Diffstat (limited to 'timers.h')
-rw-r--r-- | timers.h | 3 |
1 files changed, 2 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 1.18 2005/03/20 14:47:45 kls Exp $ + * $Id: timers.h 1.19 2005/05/07 10:36:35 kls Exp $ */ #ifndef __TIMERS_H @@ -19,6 +19,7 @@ enum eTimerFlags { tfNone = 0x0000, tfActive = 0x0001, tfInstant = 0x0002, tfVps = 0x0004, + tfRecording = 0x0008, tfAll = 0xFFFF, }; enum eTimerMatch { tmNone, tmPartial, tmFull }; |