summaryrefslogtreecommitdiff
path: root/dvbapi.h
diff options
context:
space:
mode:
authorKlaus Schmidinger <vdr@tvdr.de>2002-01-26 13:42:15 +0100
committerKlaus Schmidinger <vdr@tvdr.de>2002-01-26 13:42:15 +0100
commit4bba577a8bd6ac06445d34db3a0f7bdae37c120d (patch)
tree6c9696d8fe39712bb09ee422d7517a64de3d9609 /dvbapi.h
parent503c803b8d97e7997bc2a5c42eb6a2014d013528 (diff)
downloadvdr-4bba577a8bd6ac06445d34db3a0f7bdae37c120d.tar.gz
vdr-4bba577a8bd6ac06445d34db3a0f7bdae37c120d.tar.bz2
Improved error handling in the editing process; message prompt at the end of editing process
Diffstat (limited to 'dvbapi.h')
-rw-r--r--dvbapi.h6
1 files changed, 5 insertions, 1 deletions
diff --git a/dvbapi.h b/dvbapi.h
index aa4a5feb..73375719 100644
--- a/dvbapi.h
+++ b/dvbapi.h
@@ -4,7 +4,7 @@
* See the main source file 'vdr.c' for copyright information and
* how to reach the author.
*
- * $Id: dvbapi.h 1.59 2001/11/24 11:03:16 kls Exp $
+ * $Id: dvbapi.h 1.60 2002/01/26 13:01:16 kls Exp $
*/
#ifndef __DVBAPI_H
@@ -69,10 +69,14 @@ class cVideoCutter {
private:
static char *editedVersionName;
static cCuttingBuffer *cuttingBuffer;
+ static bool error;
+ static bool ended;
public:
static bool Start(const char *FileName);
static void Stop(void);
static bool Active(void);
+ static bool Error(void);
+ static bool Ended(void);
};
class cDvbApi {