diff options
author | th <th@openoffice.org> | 2000-12-01 09:56:11 +0000 |
---|---|---|
committer | th <th@openoffice.org> | 2000-12-01 09:56:11 +0000 |
commit | f1bcc490d04adf2f4785530950ce067d6adb15c0 (patch) | |
tree | 8a8baa55a065bd0c20f5933ffdbc43ecc426957c /sal/textenc/tcvtjp6.tab | |
parent | a67dea2b3f755c9eae652fd442660e5479a289cb (diff) |
#79960# - Support for JIS-X-0212
Diffstat (limited to 'sal/textenc/tcvtjp6.tab')
-rw-r--r-- | sal/textenc/tcvtjp6.tab | 27 |
1 files changed, 24 insertions, 3 deletions
diff --git a/sal/textenc/tcvtjp6.tab b/sal/textenc/tcvtjp6.tab index fc78041c8bf1..e0565a5aa291 100644 --- a/sal/textenc/tcvtjp6.tab +++ b/sal/textenc/tcvtjp6.tab @@ -2,9 +2,9 @@ * * $RCSfile: tcvtjp6.tab,v $ * - * $Revision: 1.1.1.1 $ + * $Revision: 1.2 $ * - * last change: $Author: hr $ $Date: 2000-09-18 15:17:28 $ + * last change: $Author: th $ $Date: 2000-12-01 10:56:11 $ * * The Contents of this file are made available subject to the terms of * either of the following licenses @@ -2754,9 +2754,29 @@ static ImplTextEncodingData aImplJISX0201TextEncodingData = /* ======================================================================= */ -static ImplTextEncodingData aImplJISX0212TextEncodingData = +static ImplTextConverterData aImplJISX0212TextConverterData = { + aJIS0212DBCSHighTab, + NULL, + RTL_UNICODE_CHAR_DEFAULT, +}; + +static ImplTextConverter aImplJISX0212TextConverter = +{ + &aImplJISX0212TextConverterData, + NULL, + ImplUnicodeToJISX0208, // can use same routine with JISX0208 + NULL, + NULL, NULL, + NULL, + NULL, + NULL +}; + +static ImplTextEncodingData aImplJISX0212TextEncodingData = +{ + &aImplJISX0212TextConverter, RTL_TEXTENCODING_JIS_X_0212, 2, 2, 2, 128, @@ -2767,3 +2787,4 @@ static ImplTextEncodingData aImplJISX0212TextEncodingData = RTL_TEXTENCODING_INFO_MULTIBYTE, SCRIPT_JAPANESE, }; + |