summaryrefslogtreecommitdiff
path: root/timers.h
diff options
context:
space:
mode:
authorKlaus Schmidinger <vdr@tvdr.de>2005-05-07 11:10:56 +0200
committerKlaus Schmidinger <vdr@tvdr.de>2005-05-07 11:10:56 +0200
commit8b137f8ce5b901a7ef9193644832827339deee2f (patch)
treedd21d564186dccf77ac27baf3c403dabaea31edf /timers.h
parent9f7166a8915596fca3656d4b2627dd0bcc27ddaa (diff)
downloadvdr-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.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/timers.h b/timers.h
index ae83f5b6..28b3dd50 100644
--- a/timers.h
+++ b/timers.h
@@ -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 };