summaryrefslogtreecommitdiff
path: root/config.h
diff options
context:
space:
mode:
Diffstat (limited to 'config.h')
-rw-r--r--config.h16
1 files changed, 9 insertions, 7 deletions
diff --git a/config.h b/config.h
index 807850f..00b2d68 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 2.60 2012/12/30 13:08:41 kls Exp $
+ * $Id: config.h 2.64 2013/02/05 11:19:20 kls Exp $
*/
#ifndef __CONFIG_H
@@ -22,13 +22,13 @@
// VDR's own version number:
-#define VDRVERSION "1.7.36"
-#define VDRVERSNUM 10736 // Version * 10000 + Major * 100 + Minor
+#define VDRVERSION "1.7.37"
+#define VDRVERSNUM 10737 // Version * 10000 + Major * 100 + Minor
// The plugin API's version number:
-#define APIVERSION "1.7.36"
-#define APIVERSNUM 10736 // Version * 10000 + Major * 100 + Minor
+#define APIVERSION "1.7.37"
+#define APIVERSNUM 10737 // Version * 10000 + Major * 100 + Minor
// When loading plugins, VDR searches them by their APIVERSION, which
// may be smaller than VDRVERSION in case there have been no changes to
@@ -49,7 +49,7 @@
#define MINOSDHEIGHT 324
#define MAXOSDHEIGHT 1200
-#define MaxFileName 256
+#define MaxFileName NAME_MAX // obsolete - use NAME_MAX directly instead!
#define MaxSkinName 16
#define MaxThemeName 16
@@ -257,7 +257,7 @@ public:
int MenuScrollWrap;
int MenuKeyCloses;
int MarkInstantRecord;
- char NameInstantRecord[MaxFileName];
+ char NameInstantRecord[NAME_MAX];
int InstantRecordTime;
int LnbSLOF;
int LnbFrequLo;
@@ -280,6 +280,8 @@ public:
int SVDRPTimeout;
int ZapTimeout;
int ChannelEntryTimeout;
+ int RcRepeatDelay;
+ int RcRepeatDelta;
int DefaultPriority, DefaultLifetime;
int PausePriority, PauseLifetime;
int PauseKeyHandling;