diff options
Diffstat (limited to 'config.h')
-rw-r--r-- | config.h | 14 |
1 files changed, 11 insertions, 3 deletions
@@ -4,7 +4,7 @@ * See the main source file 'vdr.c' for copyright information and * how to reach the author. * - * $Id: config.h 1.288 2007/03/03 15:39:05 kls Exp $ + * $Id: config.h 1.290 2007/06/02 11:22:17 kls Exp $ */ #ifndef __CONFIG_H @@ -17,12 +17,13 @@ #include <time.h> #include <unistd.h> #include "i18n.h" +#include "font.h" #include "tools.h" // VDR's own version number: -#define VDRVERSION "1.5.2" -#define VDRVERSNUM 10502 // Version * 10000 + Major * 100 + Minor +#define VDRVERSION "1.5.3" +#define VDRVERSNUM 10503 // Version * 10000 + Major * 100 + Minor // The plugin API's version number: @@ -242,6 +243,13 @@ public: int OSDLeft, OSDTop, OSDWidth, OSDHeight; int OSDMessageTime; int UseSmallFont; + int AntiAlias; + char FontOsd[MAXFONTNAME]; + char FontSml[MAXFONTNAME]; + char FontFix[MAXFONTNAME]; + int FontOsdSize; + int FontSmlSize; + int FontFixSize; int MaxVideoFileSize; int SplitEditedFiles; int MinEventTimeout, MinUserInactivity; |