diff options
author | Klaus Schmidinger <vdr@tvdr.de> | 2006-02-18 15:59:43 +0100 |
---|---|---|
committer | Klaus Schmidinger <vdr@tvdr.de> | 2006-02-18 15:59:43 +0100 |
commit | 492f06175ab12b90d5974a909986bdac6d4818a0 (patch) | |
tree | 4bdb89966bb770130dda17756a4d768be0d30ffe /epg.h | |
parent | 53f77dddedba4fd2d0322dbb7de8df1fbc480790 (diff) | |
download | vdr-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.h | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -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); |