summaryrefslogtreecommitdiffstats
path: root/intl/uconv/ucvko/nsUnicodeToCP949.cpp
diff options
context:
space:
mode:
authorMatt A. Tobin <mattatobin@localhost.localdomain>2018-02-02 04:16:08 -0500
committerMatt A. Tobin <mattatobin@localhost.localdomain>2018-02-02 04:16:08 -0500
commit5f8de423f190bbb79a62f804151bc24824fa32d8 (patch)
tree10027f336435511475e392454359edea8e25895d /intl/uconv/ucvko/nsUnicodeToCP949.cpp
parent49ee0794b5d912db1f95dce6eb52d781dc210db5 (diff)
downloadUXP-5f8de423f190bbb79a62f804151bc24824fa32d8.tar
UXP-5f8de423f190bbb79a62f804151bc24824fa32d8.tar.gz
UXP-5f8de423f190bbb79a62f804151bc24824fa32d8.tar.lz
UXP-5f8de423f190bbb79a62f804151bc24824fa32d8.tar.xz
UXP-5f8de423f190bbb79a62f804151bc24824fa32d8.zip
Add m-esr52 at 52.6.0
Diffstat (limited to 'intl/uconv/ucvko/nsUnicodeToCP949.cpp')
-rw-r--r--intl/uconv/ucvko/nsUnicodeToCP949.cpp44
1 files changed, 44 insertions, 0 deletions
diff --git a/intl/uconv/ucvko/nsUnicodeToCP949.cpp b/intl/uconv/ucvko/nsUnicodeToCP949.cpp
new file mode 100644
index 000000000..01b6d9263
--- /dev/null
+++ b/intl/uconv/ucvko/nsUnicodeToCP949.cpp
@@ -0,0 +1,44 @@
+/* -*- Mode: C; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
+/* This Source Code Form is subject to the terms of the Mozilla Public
+ * License, v. 2.0. If a copy of the MPL was not distributed with this
+ * file, You can obtain one at http://mozilla.org/MPL/2.0/. */
+
+
+#include "nsUnicodeToCP949.h"
+#include "nsUCvKODll.h"
+#include "nsUCConstructors.h"
+
+//----------------------------------------------------------------------
+// Global functions and data [declaration]
+
+
+// Unicode Hangul syllables (not enumerated in KS X 1001) to CP949 : 8822 of them
+static const uint16_t g_ufCP949NoKSCHangulMapping[] = {
+#include "u20cp949hangul.uf"
+};
+
+
+
+static const uint16_t *g_CP949MappingTable[3] = {
+ g_ASCIIMappingTable,
+ g_ufKSC5601Mapping,
+ g_ufCP949NoKSCHangulMapping
+};
+
+static const uScanClassID g_CP949ScanClassTable[3] = {
+ u1ByteCharset,
+ u2BytesGRCharset,
+ u2BytesCharset
+};
+
+nsresult
+nsUnicodeToCP949Constructor(nsISupports *aOuter, REFNSIID aIID,
+ void **aResult)
+{
+ return CreateMultiTableEncoder(3,
+ (uScanClassID*) g_CP949ScanClassTable,
+ (uMappingTable**) g_CP949MappingTable,
+ 2 /* max len = src * 2 */,
+ aOuter, aIID, aResult);
+}
+