summaryrefslogtreecommitdiff
path: root/epg.h
diff options
context:
space:
mode:
authorKlaus Schmidinger <vdr@tvdr.de>2006-02-18 15:59:43 +0100
committerKlaus Schmidinger <vdr@tvdr.de>2006-02-18 15:59:43 +0100
commit492f06175ab12b90d5974a909986bdac6d4818a0 (patch)
tree4bdb89966bb770130dda17756a4d768be0d30ffe /epg.h
parent53f77dddedba4fd2d0322dbb7de8df1fbc480790 (diff)
downloadvdr-492f06175ab12b90d5974a909986bdac6d4818a0.tar.gz
vdr-492f06175ab12b90d5974a909986bdac6d4818a0.tar.bz2
The language code in the 'X' component records of EPG data can now consist of two codes, separated by '+'
Diffstat (limited to 'epg.h')
-rw-r--r--epg.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/epg.h b/epg.h
index ad245243..63addc0d 100644
--- a/epg.h
+++ b/epg.h
@@ -7,7 +7,7 @@
* Original version (as used in VDR before 1.3.0) written by
* Robert Schneider <Robert.Schneider@web.de> and Rolf Hakenes <hakenes@hippomi.de>.
*
- * $Id: epg.h 1.30 2006/01/29 14:03:13 kls Exp $
+ * $Id: epg.h 1.31 2006/02/18 14:42:25 kls Exp $
*/
#ifndef __EPG_H
@@ -24,7 +24,7 @@ enum eDumpMode { dmAll, dmPresent, dmFollowing, dmAtTime };
struct tComponent {
uchar stream;
uchar type;
- char language[4];
+ char language[MAXLANGCODE2];
char *description;
cString ToString(void);
bool FromString(const char *s);