summaryrefslogtreecommitdiff
path: root/config.h
diff options
context:
space:
mode:
Diffstat (limited to 'config.h')
-rw-r--r--config.h10
1 files changed, 7 insertions, 3 deletions
diff --git a/config.h b/config.h
index 56f3618..f9bd579 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.27 2000/10/08 16:33:48 kls Exp $
+ * $Id: config.h 1.29 2000/11/01 13:42:29 kls Exp $
*/
#ifndef __CONFIG_H
@@ -15,9 +15,10 @@
#include <string.h>
#include <time.h>
#include "dvbapi.h"
+#include "eit.h"
#include "tools.h"
-#define VDRVERSION "0.66"
+#define VDRVERSION "0.67"
#define MaxBuffer 10000
@@ -113,6 +114,7 @@ public:
char file[MaxFileName];
char *summary;
cTimer(bool Instant = false);
+ cTimer(const cEventInfo *EventInfo);
~cTimer();
cTimer& operator= (const cTimer &Timer);
const char *ToText(void);
@@ -204,10 +206,10 @@ public:
int GetNextNormal(int Idx); // Get next normal channel (not group)
void ReNumber(void); // Recalculate 'number' based on channel type
cChannel *GetByNumber(int Number);
+ cChannel *GetByServiceID(unsigned short ServiceId);
const char *GetChannelNameByNumber(int Number);
bool SwitchTo(int Number, cDvbApi *DvbApi = NULL);
int MaxNumber(void) { return maxNumber; }
- eKeys ShowChannel(int Number, bool Switched, bool Group = false);
};
class cTimers : public cConfig<cTimer> {
@@ -234,6 +236,8 @@ public:
int MarkInstantRecord;
int LnbFrequLo;
int LnbFrequHi;
+ int SetSystemTime;
+ int MarginStart, MarginStop;
cSetup(void);
bool Load(const char *FileName);
bool Save(const char *FileName = NULL);