diff options
author | Klaus Schmidinger <vdr@tvdr.de> | 2007-04-22 14:49:26 +0200 |
---|---|---|
committer | Klaus Schmidinger <vdr@tvdr.de> | 2007-04-22 14:49:26 +0200 |
commit | 2ac9030e653c55d81e311b90d68669d4f97c2b1c (patch) | |
tree | 8e0f83b6b939651eb513e777f39aeddb3dc2e944 /libsi/si.h | |
parent | 6d88da93858c51fd1f02f72439536e33f5516fd0 (diff) | |
download | vdr-2ac9030e653c55d81e311b90d68669d4f97c2b1c.tar.gz vdr-2ac9030e653c55d81e311b90d68669d4f97c2b1c.tar.bz2 |
Implemented character set conversion in 'libsi'1.5.2
Diffstat (limited to 'libsi/si.h')
-rw-r--r-- | libsi/si.h | 7 |
1 files changed, 6 insertions, 1 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 1.16 2007/02/03 11:47:25 kls Exp $ + * $Id: si.h 1.17 2007/04/22 13:32:09 kls Exp $ * * ***************************************************************************/ @@ -486,6 +486,11 @@ protected: void decodeText(char *buffer, char *shortVersion, int sizeBuffer, int sizeShortVersion); }; +// 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. +bool SetSystemCharacterTable(const char *CharacterTable); + } //end of namespace #endif //LIBSI_SI_H |