summaryrefslogtreecommitdiff
path: root/config.h
diff options
context:
space:
mode:
authorKlaus Schmidinger <vdr@tvdr.de>2000-07-24 16:43:04 +0200
committerKlaus Schmidinger <vdr@tvdr.de>2000-07-24 16:43:04 +0200
commit07d92eaee7d1ff37a6abfe873275b2f82a979271 (patch)
tree2ec763200083bc07820f099fc76ec079a6c91069 /config.h
parent6602eb5c90210906273a5b9a15aa0d2d1d095a16 (diff)
downloadvdr-07d92eaee7d1ff37a6abfe873275b2f82a979271.tar.gz
vdr-07d92eaee7d1ff37a6abfe873275b2f82a979271.tar.bz2
Implemented 'summary' feature
Diffstat (limited to 'config.h')
-rw-r--r--config.h7
1 files changed, 5 insertions, 2 deletions
diff --git a/config.h b/config.h
index 28d07edf..be1c7ec7 100644
--- a/config.h
+++ b/config.h
@@ -4,7 +4,7 @@
* See the main source file 'vdr.c' for copyright information and
* how to reach the author.
*
- * $Id: config.h 1.10 2000/07/23 11:54:53 kls Exp $
+ * $Id: config.h 1.11 2000/07/23 17:17:10 kls Exp $
*/
#ifndef __CONFIG_H
@@ -17,7 +17,7 @@
#include "dvbapi.h"
#include "tools.h"
-#define MaxBuffer 1000
+#define MaxBuffer 10000
enum eKeys { // "Up" and "Down" must be the first two keys!
kUp,
@@ -100,7 +100,10 @@ public:
int priority;
int lifetime;
char file[MaxFileName];
+ char *summary;
cTimer(bool Instant = false);
+ ~cTimer();
+ cTimer& operator= (const cTimer &Timer);
const char *ToText(void);
bool Parse(const char *s);
bool Save(FILE *f);