1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
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);
}
|