diff options
author | Klaus Schmidinger <vdr@tvdr.de> | 2020-05-15 11:31:40 +0200 |
---|---|---|
committer | Klaus Schmidinger <vdr@tvdr.de> | 2020-05-15 11:31:40 +0200 |
commit | aae02a43daf93e979f536514fde6172de6ba44ff (patch) | |
tree | 13f8233a82caba151eb84c86df7682b612e9b0b3 /libsi/si.h | |
parent | ab308bea3175dd21139b7b842b6de56bf88d8b1c (diff) | |
download | vdr-aae02a43daf93e979f536514fde6172de6ba44ff.tar.gz vdr-aae02a43daf93e979f536514fde6172de6ba44ff.tar.bz2 |
Modified setting system and override character tables
Diffstat (limited to 'libsi/si.h')
-rw-r--r-- | libsi/si.h | 6 |
1 files changed, 4 insertions, 2 deletions
@@ -6,7 +6,7 @@ * the Free Software Foundation; either version 2 of the License, or * * (at your option) any later version. * * * - * $Id: si.h 4.1 2020/05/14 21:21:03 kls Exp $ + * $Id: si.h 4.2 2020/05/15 11:31:40 kls Exp $ * * ***************************************************************************/ @@ -527,7 +527,9 @@ protected: // Set the character table to use for strings that do not begin with a character // table indicator. Call with NULL to turn this off. -void SetOverrideCharacterTable(const char *CharacterTable); +// Must be called *after* SetSystemCharacterTable()! +// Returns true if the character table was recognized. +bool SetOverrideCharacterTable(const char *CharacterTable); // Call this function to set the system character table. CharacterTable is a string // like "iso8859-15" or "utf-8" (case insensitive). // Returns true if the character table was recognized. |