CharsetTable.h
18.2 KB
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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
/*****************************************************************************
* Copyright Statement:
* --------------------
* This software is protected by Copyright and the information contained
* herein is confidential. The software may not be copied and the information
* contained herein may not be used or disclosed except with the written
* permission of MediaTek Inc. (C) 2005
*
* BY OPENING THIS FILE, BUYER HEREBY UNEQUIVOCALLY ACKNOWLEDGES AND AGREES
* THAT THE SOFTWARE/FIRMWARE AND ITS DOCUMENTATIONS ("MEDIATEK SOFTWARE")
* RECEIVED FROM MEDIATEK AND/OR ITS REPRESENTATIVES ARE PROVIDED TO BUYER ON
* AN "AS-IS" BASIS ONLY. MEDIATEK EXPRESSLY DISCLAIMS ANY AND ALL WARRANTIES,
* EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE IMPLIED WARRANTIES OF
* MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE OR NONINFRINGEMENT.
* NEITHER DOES MEDIATEK PROVIDE ANY WARRANTY WHATSOEVER WITH RESPECT TO THE
* SOFTWARE OF ANY THIRD PARTY WHICH MAY BE USED BY, INCORPORATED IN, OR
* SUPPLIED WITH THE MEDIATEK SOFTWARE, AND BUYER AGREES TO LOOK ONLY TO SUCH
* THIRD PARTY FOR ANY WARRANTY CLAIM RELATING THERETO. MEDIATEK SHALL ALSO
* NOT BE RESPONSIBLE FOR ANY MEDIATEK SOFTWARE RELEASES MADE TO BUYER'S
* SPECIFICATION OR TO CONFORM TO A PARTICULAR STANDARD OR OPEN FORUM.
*
* BUYER'S SOLE AND EXCLUSIVE REMEDY AND MEDIATEK'S ENTIRE AND CUMULATIVE
* LIABILITY WITH RESPECT TO THE MEDIATEK SOFTWARE RELEASED HEREUNDER WILL BE,
* AT MEDIATEK'S OPTION, TO REVISE OR REPLACE THE MEDIATEK SOFTWARE AT ISSUE,
* OR REFUND ANY SOFTWARE LICENSE FEES OR SERVICE CHARGE PAID BY BUYER TO
* MEDIATEK FOR SUCH MEDIATEK SOFTWARE AT ISSUE.
*
* THE TRANSACTION CONTEMPLATED HEREUNDER SHALL BE CONSTRUED IN ACCORDANCE
* WITH THE LAWS OF THE STATE OF CALIFORNIA, USA, EXCLUDING ITS CONFLICT OF
* LAWS PRINCIPLES. ANY DISPUTES, CONTROVERSIES OR CLAIMS ARISING THEREOF AND
* RELATED THERETO SHALL BE SETTLED BY ARBITRATION IN SAN FRANCISCO, CA, UNDER
* THE RULES OF THE INTERNATIONAL CHAMBER OF COMMERCE (ICC).
*
*****************************************************************************/
/*******************************************************************************
* Filename:
* ---------
* CharsetTable.h
*
* Project:
* --------
* MAUI
*
* Description:
* ------------
* This file defines function prototypes for charset realted utilities
*
* Author:
* -------
* -------
*
*==============================================================================
* HISTORY
* Below this line, this part is controlled by PVCS VM. DO NOT MODIFY!!
*------------------------------------------------------------------------------
* removed!
*
* removed!
* removed!
* removed!
*
* removed!
* removed!
* removed!
*
* removed!
* removed!
* removed!
*
* removed!
* removed!
* removed!
*
* removed!
* removed!
* removed!
*
* removed!
* removed!
* removed!
*
* removed!
* removed!
* removed!
*
* removed!
* removed!
* removed!
*
* removed!
* removed!
* removed!
*
* removed!
* removed!
* removed!
*
* removed!
* removed!
* removed!
*
* removed!
* removed!
* removed!
*
* removed!
* removed!
* removed!
*
* removed!
* removed!
* removed!
*
*------------------------------------------------------------------------------
* Upper this line, this part is controlled by PVCS VM. DO NOT MODIFY!!
*==============================================================================
*******************************************************************************/
#ifndef _MMI_CHARSETS_H
#define _MMI_CHARSETS_H
#include "mmi_features.h"
#include "kal_release.h"
#include "Conversions.h"
#if !defined(NEPTUNE_MMI)
#include "kal_general_types.h"
#endif
typedef struct
{
unsigned short start_value;
unsigned short end_value;
unsigned short index;
} Mapping_Struct;
//create a new mapping_struct for MSB(8 bits)
typedef struct
{
unsigned char start_value;
unsigned char end_value;
unsigned short index;
} MSB_Mapping_Struct;
typedef struct
{
unsigned short base_value;
unsigned short end_index;
}Alphabet_Mapping_Struct;
extern const Mapping_Struct g_chset_map_ucs2_common[];
extern unsigned short mmi_chset_map_ucs2_common_size(void);
#ifdef __MMI_CHSET_ARABIC_ISO__
extern const kal_uint8 g_chset_ucs2_arabic_iso[];
extern const unsigned short g_chset_arabic_ucs2_iso[];
extern const Mapping_Struct g_chset_map_arabic_ucs2_iso[];
extern const Mapping_Struct g_chset_map_ucs2_arabic_iso[];
extern unsigned short mmi_chset_map_ucs2_arabic_iso_size(void);
extern unsigned short mmi_chset_map_arabic_ucs2_iso_size(void);
#endif /* __MMI_CHSET_ARABIC_ISO__ */
#ifdef __MMI_CHSET_ARABIC_WIN__
extern const kal_uint8 g_chset_ucs2_arabic_win[];
extern const unsigned short g_chset_arabic_ucs2_win[];
extern const Mapping_Struct g_chset_map_ucs2_arabic_win[];
extern unsigned short mmi_chset_map_arabic_ucs2_win_size(void);
extern unsigned short mmi_chset_map_ucs2_arabic_win_size(void);
#endif /* __MMI_CHSET_ARABIC_WIN__ */
#ifdef __MMI_CHSET_CYRILLIC_ISO__
extern const kal_uint8 g_chset_ucs2_cyrillic_iso[];
extern const unsigned short g_chset_cyrillic_ucs2_iso[];
extern const Mapping_Struct g_chset_map_cyrillic_ucs2_iso[];
extern const Mapping_Struct g_chset_map_ucs2_cyrillic_iso[];
extern unsigned short mmi_chset_map_ucs2_cyrillic_iso_size(void);
extern unsigned short mmi_chset_map_cyrillic_ucs2_iso_size(void);
#endif /* __MMI_CHSET_CYRILLIC_ISO__ */
#ifdef __MMI_CHSET_CYRILLIC_WIN__
extern const kal_uint8 g_chset_ucs2_cyrillic_win[];
extern const unsigned short g_chset_cyrillic_ucs2_win[];
extern const Mapping_Struct g_chset_map_ucs2_cyrillic_win[];
extern const Mapping_Struct g_chset_map_cyrillic_ucs2_win[];
extern unsigned short mmi_chset_map_cyrillic_ucs2_win_size(void);
extern unsigned short mmi_chset_map_ucs2_cyrillic_win_size(void);
#endif /* __MMI_CHSET_CYRILLIC_WIN__ */
/* PMT START PERSIAN */
#ifdef __MMI_CHSET_PERSIAN_CP1097__
extern const unsigned short g_chset_ucs2_persian_cp1097[];
extern const unsigned short g_chset_persian_ucs2_cp1097[];
extern const Mapping_Struct g_chset_map_persian_ucs2_cp1097[];
extern const Mapping_Struct g_chset_map_ucs2_persian_cp1097[];
extern unsigned short mmi_chset_map_ucs2_persian_cp1097_size(void);
extern unsigned short mmi_chset_map_persian_ucs2_cp1097_size(void);
#endif /* __MMI_CHSET_PERSIAN_CP1097__ */
#ifdef __MMI_CHSET_PERSIAN_CP1098__
extern const kal_uint8 g_chset_ucs2_persian_cp1098[];
extern const unsigned short g_chset_persian_ucs2_cp1098[];
extern const Mapping_Struct g_chset_map_persian_ucs2_cp1098[];
extern const Mapping_Struct g_chset_map_ucs2_persian_cp1098[];
extern unsigned short mmi_chset_map_ucs2_persian_cp1098_size(void);
extern unsigned short mmi_chset_map_persian_ucs2_cp1098_size(void);
#endif /* __MMI_CHSET_PERSIAN_CP1098__ */
/* PMT END PERSIAN */
#ifdef __MMI_CHSET_BALTIC_ISO__
extern const kal_uint8 g_chset_ucs2_baltic_iso[];
extern const unsigned short g_chset_baltic_ucs2_iso[];
extern const Mapping_Struct g_chset_map_ucs2_baltic_iso[];
extern const Mapping_Struct g_chset_map_baltic_ucs2_iso[];
extern unsigned short mmi_chset_map_baltic_ucs2_iso_size(void);
extern unsigned short mmi_chset_map_ucs2_baltic_iso_size(void);
#endif /* __MMI_CHSET_BALTIC_ISO__ */
#ifdef __MMI_CHSET_BALTIC_WIN__
extern const kal_uint8 g_chset_ucs2_baltic_win[];
extern const unsigned short g_chset_baltic_ucs2_win[];
extern const Mapping_Struct g_chset_map_ucs2_baltic_win[];
extern const Mapping_Struct g_chset_map_baltic_ucs2_win[];
extern unsigned short mmi_chset_map_ucs2_baltic_win_size(void);
extern unsigned short mmi_chset_map_baltic_ucs2_win_size(void);
#endif /* __MMI_CHSET_BALTIC_WIN__ */
#ifdef __MMI_CHSET_CEURO_ISO__
extern const kal_uint8 g_chset_ucs2_ceuro_iso[];
extern const unsigned short g_chset_ceuro_ucs2_iso[];
extern const Mapping_Struct g_chset_map_ucs2_ceuro_iso[];
extern const Mapping_Struct g_chset_map_ceuro_ucs2_iso[];
extern unsigned short mmi_chset_map_ucs2_ceuro_iso_size(void);
extern unsigned short mmi_chset_map_ceuro_ucs2_iso_size(void);
#endif /* __MMI_CHSET_CEURO_ISO__ */
#ifdef __MMI_CHSET_CEURO_WIN__
extern const kal_uint8 g_chset_ucs2_ceuro_win[];
extern const unsigned short g_chset_ceuro_ucs2_win[];
extern const Mapping_Struct g_chset_map_ucs2_ceuro_win[];
extern const Mapping_Struct g_chset_map_ceuro_ucs2_win[];
extern unsigned short mmi_chset_map_ceuro_ucs2_win_size(void);
extern unsigned short mmi_chset_map_ucs2_ceuro_win_size(void);
#endif /* __MMI_CHSET_CEURO_WIN__ */
#ifdef __MMI_CHSET_GREEK_ISO__
extern const kal_uint8 g_chset_ucs2_greek_iso[];
extern const unsigned short g_chset_greek_ucs2_iso[];
extern const Mapping_Struct g_chset_map_ucs2_greek_iso[];
extern const Mapping_Struct g_chset_map_greek_ucs2_iso[];
extern unsigned short mmi_chset_map_ucs2_greek_iso_size(void);
extern unsigned short mmi_chset_map_greek_ucs2_iso_size(void);
#endif /* __MMI_CHSET_GREEK_ISO__ */
#ifdef __MMI_CHSET_GREEK_WIN__
extern const kal_uint8 g_chset_ucs2_greek_win[];
extern const unsigned short g_chset_greek_ucs2_win[];
extern const Mapping_Struct g_chset_map_ucs2_greek_win[];
extern const Mapping_Struct g_chset_map_greek_ucs2_win[];
extern unsigned short mmi_chset_map_greek_ucs2_win_size(void);
extern unsigned short mmi_chset_map_ucs2_greek_win_size(void);
#endif /* __MMI_CHSET_GREEK_WIN__ */
#ifdef __MMI_CHSET_HEBREW_ISO__
extern const kal_uint8 g_chset_ucs2_hebrew_iso[];
extern const unsigned short g_chset_hebrew_ucs2_iso[];
extern const Mapping_Struct g_chset_map_ucs2_hebrew_iso[];
extern const Mapping_Struct g_chset_map_hebrew_ucs2_iso[];
extern unsigned short mmi_chset_map_hebrew_ucs2_iso_size(void);
extern unsigned short mmi_chset_map_ucs2_hebrew_iso_size(void);
#endif /* __MMI_CHSET_HEBREW_ISO__ */
#ifdef __MMI_CHSET_EUCKR_WIN__
extern const unsigned short g_chset_ucs2_euckr_win[];
extern const unsigned short g_chset_euckr_ucs2_win[];
extern const Mapping_Struct g_chset_map_ucs2_euckr_win[];
extern const Mapping_Struct g_chset_map_euckr_ucs2_win[];
extern unsigned short g_chset_map_euckr_ucs2_win_size(void);
extern unsigned short mmi_chset_map_ucs2_euckr_win_size(void);
#endif /* __MMI_CHSET_EUCKR_WIN__ */
#ifdef __MMI_CHSET_THAI_WINDOWS__
extern const kal_uint8 g_chset_ucs2_thai_win[];
extern const unsigned short g_chset_thai_ucs2_win[];
extern const Mapping_Struct g_chset_map_ucs2_thai_win[];
extern const Mapping_Struct g_chset_map_thai_ucs2_win[];
extern unsigned short g_chset_map_thai_ucs2_win_size(void);
extern unsigned short mmi_chset_map_ucs2_thai_win_size(void);
#endif /* __MMI_CHSET_THAI_WINDOWS__ */
#ifdef __MMI_CHSET_VIETNAMESE_WINDOWS__
extern const kal_uint8 g_chset_ucs2_vietnamese_win[];
extern const unsigned short g_chset_vietnamese_ucs2_win[];
extern const Mapping_Struct g_chset_map_ucs2_vietnamese_win[];
extern const Mapping_Struct g_chset_map_vietnamese_ucs2_win[];
extern unsigned short g_chset_map_vietnamese_ucs2_win_size(void);
extern unsigned short mmi_chset_map_ucs2_vietnamese_win_size(void);
#endif /* __MMI_CHSET_VIETNAMESE_WINDOWS__ */
#ifdef __MMI_CHSET_HEBREW_WIN__
extern const kal_uint8 g_chset_ucs2_hebrew_win[];
extern const unsigned short g_chset_hebrew_ucs2_win[];
extern const Mapping_Struct g_chset_map_ucs2_hebrew_win[];
extern const Mapping_Struct g_chset_map_hebrew_ucs2_win[];
extern unsigned short mmi_chset_map_ucs2_hebrew_win_size(void);
extern unsigned short mmi_chset_map_hebrew_ucs2_win_size(void);
#endif /* __MMI_CHSET_HEBREW_WIN__ */
#ifdef __MMI_CHSET_LATIN_ISO__
extern const kal_uint8 g_chset_ucs2_latin_iso[];
extern const unsigned short g_chset_latin_ucs2_iso[];
extern const Mapping_Struct g_chset_map_ucs2_latin_iso[];
extern const Mapping_Struct g_chset_map_latin_ucs2_iso[];
extern unsigned short mmi_chset_map_latin_ucs2_iso_size(void);
extern unsigned short mmi_chset_map_ucs2_latin_iso_size(void);
#endif /* __MMI_CHSET_LATIN_ISO__ */
#ifdef __MMI_CHSET_NORDIC_ISO__
extern const kal_uint8 g_chset_ucs2_nordic_iso[];
extern const unsigned short g_chset_nordic_ucs2_iso[];
extern const Mapping_Struct g_chset_map_ucs2_nordic_iso[];
extern const Mapping_Struct g_chset_map_nordic_ucs2_iso[];
extern unsigned short mmi_chset_map_ucs2_nordic_iso_size(void);
extern unsigned short mmi_chset_map_nordic_ucs2_iso_size(void);
#endif /* __MMI_CHSET_NORDIC_ISO__ */
#ifdef __MMI_CHSET_SEURO_ISO__
extern const kal_uint8 g_chset_ucs2_seuro_iso[];
extern const unsigned short g_chset_seuro_ucs2_iso[];
extern const Mapping_Struct g_chset_map_ucs2_seuro_iso[];
extern const Mapping_Struct g_chset_map_seuro_ucs2_iso[];
extern unsigned short mmi_chset_map_ucs2_seuro_iso_size(void);
extern unsigned short mmi_chset_map_seuro_ucs2_iso_size(void);
#endif /* __MMI_CHSET_SEURO_ISO__ */
#ifdef __MMI_CHSET_TURKISH_ISO__
extern const unsigned short g_chset_turkish_ucs2_iso[];
extern const kal_uint8 g_chset_ucs2_turkish_iso[];
extern const Mapping_Struct g_chset_map_turkish_ucs2_iso[];
extern const Mapping_Struct g_chset_map_ucs2_turkish_iso[];
extern unsigned short mmi_chset_map_turkish_ucs2_iso_size(void);
extern unsigned short mmi_chset_map_ucs2_turkish_iso_size(void);
#endif /* __MMI_CHSET_TURKISH_ISO__ */
#ifdef __MMI_CHSET_TURKISH_WIN__
extern const unsigned short g_chset_turkish_ucs2_win[];
extern const kal_uint8 g_chset_ucs2_turkish_win[];
extern const Mapping_Struct g_chset_map_turkish_ucs2_win[];
extern const Mapping_Struct g_chset_map_ucs2_turkish_win[];
extern unsigned short mmi_chset_map_ucs2_turkish_win_size(void);
extern unsigned short mmi_chset_map_turkish_ucs2_win_size(void);
#endif /* __MMI_CHSET_TURKISH_WIN__ */
#ifdef __MMI_CHSET_WESTERN_ISO__
extern const kal_uint8 g_chset_ucs2_western_iso[];
//extern const char g_chset_western_ucs2_iso[];
extern const Mapping_Struct g_chset_map_ucs2_western_iso[];
extern unsigned short mmi_chset_map_ucs2_western_iso_size(void);
#endif /* __MMI_CHSET_WESTERN_ISO__ */
#ifdef __MMI_CHSET_ARMENIAN_ISO__
extern const kal_uint8 g_chset_ucs2_armenian_iso[];
extern const unsigned short g_chset_armenian_ucs2_iso[];
extern const Mapping_Struct g_chset_map_armenian_ucs2_iso[];
extern const Mapping_Struct g_chset_map_ucs2_armenian_iso[];
extern unsigned short mmi_chset_map_armenian_ucs2_iso_size(void);
extern unsigned short mmi_chset_map_ucs2_armenian_iso_size(void);
#endif /* __MMI_CHSET_ARMENIAN_ISO__ */
#ifdef __MMI_CHSET_WESTERN_WIN__
extern const Alphabet_Mapping_Struct g_chset_ucs2_western_win[];
extern const Alphabet_Mapping_Struct g_chset_western_win_ucs2[];
extern unsigned short mmi_chset_ucs2_western_win_size(void);
extern unsigned short mmi_chset_western_win_ucs2_size(void);
extern const Mapping_Struct g_chset_map_ucs2_western_win[];
extern const Mapping_Struct g_chset_map_western_win_ucs2[];
extern unsigned short mmi_chset_map_ucs2_western_win_size(void);
extern unsigned short mmi_chset_map_western_win_ucs2_size(void);
#endif /* __MMI_CHSET_WESTERN_WIN__ */
#ifdef __MMI_CHSET_KOI8_R__
extern const kal_uint8 g_chset_ucs2_koi8_r[];
extern const Mapping_Struct g_chset_map_ucs2_koi8_r[];
extern const unsigned short g_chset_koi8_r_ucs2[];
extern const Mapping_Struct g_chset_map_koi8_r_ucs2[];
extern unsigned short mmi_chset_map_ucs2_koi8_r_size(void);
extern unsigned short mmi_chset_map_koi8_r_ucs2_size(void);
#endif /* __MMI_CHSET_KOI8_R__ */
#ifdef __MMI_CHSET_TIS_620__
extern const kal_uint8 g_chset_ucs2_tis_620[];
extern const Mapping_Struct g_chset_map_ucs2_tis_620[];
extern const unsigned short g_chset_tis_620_ucs2[];
extern const Mapping_Struct g_chset_map_tis_620_ucs2[];
extern unsigned short mmi_chset_map_ucs2_tis_620_size(void);
extern unsigned short mmi_chset_map_tis_620_ucs2_size(void);
#endif /* __MMI_CHSET_TIS_620__ */
#ifdef __MMI_CHSET_BIG5__
extern const key_index_t g_chset_ucs2_to_big5_key_LSB_index[];
extern const key_index_t g_chset_big5_to_ucs2_key_LSB_index[];
extern const unsigned char g_chset_ucs2_to_big5_key_MSB[];
extern const unsigned char g_chset_big5_to_ucs2_key_MSB[];
extern const unsigned short g_chset_ucs2_to_big5_table[];
extern const unsigned short g_chset_big5_to_ucs2_table[];
#endif /* __MMI_CHSET_BIG5__ */
#ifdef __MMI_CHSET_GB2312__
extern const key_index_t g_chset_ucs2_to_gb2312_key_LSB_index[];
extern const key_index_t g_chset_gb2312_to_ucs2_key_LSB_index[];
extern const unsigned char g_chset_ucs2_to_gb2312_key_MSB[];
extern const MSB_Mapping_Struct g_chset_gb2312_to_ucs2_key_MSB[];
extern const unsigned short g_chset_ucs2_to_gb2312_table[];
extern const unsigned short g_chset_gb2312_to_ucs2_table[];
extern unsigned short mmi_chset_gb2312_to_ucs2_MSB_size(void);
#endif /* __MMI_CHSET_GB2312__ */
#ifdef __MMI_CHSET_HKSCS__
extern const key_index_t g_chset_ucs2_to_hkscs_key_LSB_index[];
extern const key_index_t g_chset_hkscs_to_ucs2_key_LSB_index[];
extern const unsigned char g_chset_ucs2_to_hkscs_key_MSB[];
extern const unsigned char g_chset_hkscs_to_ucs2_key_MSB[];
extern const unsigned short g_chset_ucs2_to_hkscs_table[];
extern const unsigned short g_chset_hkscs_to_ucs2_table[];
#endif /* __MMI_CHSET_HKSCS__ */
#ifdef __MMI_CHSET_GB18030__
typedef struct
{
kal_uint16 gb_code;
kal_uint16 ucs2_code;
} mmi_chset_gb18030_ucs2_2_byte_struct;
#if 0
/* under construction !*/
/* under construction !*/
/* under construction !*/
/* under construction !*/
/* under construction !*/
#endif /* 0 */
typedef struct
{
kal_uint16 gb_code_high;
kal_uint16 gb_code_low;
kal_uint16 ucs2_code;
} mmi_chset_gb18030_ucs2_4_byte_struct;
#if 0
/* under construction !*/
/* under construction !*/
/* under construction !*/
/* under construction !*/
/* under construction !*/
#endif /* 0 */
extern const mmi_chset_gb18030_ucs2_2_byte_struct g_chset_gb18030_to_ucs2_2_byte_tbl[];
extern const mmi_chset_gb18030_ucs2_4_byte_struct g_chset_gb18030_to_ucs2_4_byte_tbl[];
extern const mmi_chset_gb18030_ucs2_2_byte_struct g_chset_ucs2_to_gb18030_2_byte_tbl[];
extern kal_uint32 mmi_chset_gb18030_ucs2_2byte_size(void);
extern kal_uint32 mmi_chset_gb18030_ucs2_4byte_size(void);
extern kal_uint32 mmi_chset_ucs2_gb18030_2byte_size(void);
#endif /* __MMI_CHSET_GB18030__ */
#ifdef __MMI_CHSET_SJIS__
extern const key_index_t g_chset_ucs2_to_sjis_key_LSB_index[];
extern const key_index_t g_chset_sjis_to_ucs2_key_LSB_index[];
extern const unsigned char g_chset_ucs2_to_sjis_key_MSB[];
extern const unsigned char g_chset_sjis_to_ucs2_key_MSB[];
extern const unsigned short g_chset_ucs2_to_sjis_table[];
extern const unsigned short g_chset_sjis_to_ucs2_table[];
#endif /* __MMI_CHSET_SJIS__ */
#endif /* _MMI_CHARSETS_H */ // #ifndef _MMI_CHARSETS_H