summaryrefslogtreecommitdiff
path: root/menu.h
diff options
context:
space:
mode:
authorKlaus Schmidinger <vdr@tvdr.de>2003-05-11 14:10:00 +0200
committerKlaus Schmidinger <vdr@tvdr.de>2003-05-11 14:10:00 +0200
commitc6e759f436e2ee6496425a2293bb64d7f28103d0 (patch)
tree30037982e11e73d5545c99e7b7281a887b722499 /menu.h
parent11df7f81006b440aa7a126c66bdbf932326fb7fc (diff)
downloadvdr-c6e759f436e2ee6496425a2293bb64d7f28103d0.tar.gz
vdr-c6e759f436e2ee6496425a2293bb64d7f28103d0.tar.bz2
Implemented separate PausePriority and PauseLifetime parameters for the recordings created when pausing live video
Diffstat (limited to 'menu.h')
-rw-r--r--menu.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/menu.h b/menu.h
index fab74a7f..a4045057 100644
--- a/menu.h
+++ b/menu.h
@@ -4,7 +4,7 @@
* See the main source file 'vdr.c' for copyright information and
* how to reach the author.
*
- * $Id: menu.h 1.54 2003/04/21 13:40:45 kls Exp $
+ * $Id: menu.h 1.55 2003/05/11 13:43:58 kls Exp $
*/
#ifndef __MENU_H
@@ -116,7 +116,7 @@ private:
char *fileName;
bool GetEventInfo(void);
public:
- cRecordControl(cDevice *Device, cTimer *Timer = NULL);
+ cRecordControl(cDevice *Device, cTimer *Timer = NULL, bool Pause = false);
virtual ~cRecordControl();
bool Process(time_t t);
bool Uses(cDevice *Device) { return Device == device; }
@@ -131,7 +131,7 @@ class cRecordControls {
private:
static cRecordControl *RecordControls[];
public:
- static bool Start(cTimer *Timer = NULL);
+ static bool Start(cTimer *Timer = NULL, bool Pause = false);
static void Stop(const char *InstantId);
static void Stop(cDevice *Device);
static bool StopPrimary(bool DoIt = false);