diff options
author | Andreas Brugger <brougs78@gmx.net> | 2006-01-07 12:00:00 +0100 |
---|---|---|
committer | Thomas Günther <tom@toms-cafe.de> | 2009-06-03 01:37:19 +0200 |
commit | eb6eaf285edd82c212810f066313f93dc4a8a129 (patch) | |
tree | ccd809304ccfaf710db31e5ba765b92961a821ca /xml | |
parent | eeda27b9d069161db0261f6e2f51ac9463bde910 (diff) | |
download | vdr-plugin-text2skin-eb6eaf285edd82c212810f066313f93dc4a8a129.tar.gz vdr-plugin-text2skin-eb6eaf285edd82c212810f066313f93dc4a8a129.tar.bz2 |
2006-01-07: Version 1.1-cvs_ext-0.5 (vdr-text2skin-1.1-cvs_ext-0.5.diff)
- modifications to compile with vdr-versions >= 1.3.18
- added tokens:
OsdWidth, OsdHeight
- activating the token ReplayVideoAR
Diffstat (limited to 'xml')
-rw-r--r-- | xml/string.c | 2 | ||||
-rw-r--r-- | xml/string.h | 4 |
2 files changed, 4 insertions, 2 deletions
diff --git a/xml/string.c b/xml/string.c index 76aa317..b8fc1f9 100644 --- a/xml/string.c +++ b/xml/string.c @@ -46,7 +46,7 @@ static const char *Tokens[__COUNT_TOKEN__] = { "MenuTitle", "MenuGroup", "IsMenuGroup", "MenuItem", "IsMenuItem", "MenuCurrent", "IsMenuCurrent", "MenuText", "RecordingName", "RecordingDateTime", "RecordingTitle", "RecordingShortText", "RecordingDescription", "RecordingLanguageCode", - "RecordingVideoAR", "RecordingSize", "RecordingLength", "RecordingCuttedLength", + "RecordingVideoAR", "RecordingSize", "RecordingLength", "RecordingCuttedLength", "OsdWidth", "OsdHeight", "RecordingLanguageDescription", "ButtonRed", "ButtonGreen", "ButtonYellow", "ButtonBlue", "CanScrollUp", "CanScrollDown" }; diff --git a/xml/string.h b/xml/string.h index 098e43b..68cd8fa 100644 --- a/xml/string.h +++ b/xml/string.h @@ -153,6 +153,8 @@ enum exToken { tRecordingSize, tRecordingLength, tRecordingCuttedLength, + tOsdWidth, + tOsdHeight, tRecordingLanguageDescription, // next four also in Channel and Replay display (if supported by vdr/plugin) tButtonRed, @@ -161,7 +163,7 @@ enum exToken { tButtonBlue, tCanScrollUp, tCanScrollDown, - + #define __COUNT_TOKEN__ (tCanScrollDown + 1) }; |