equal
deleted
inserted
replaced
|
1 /* |
|
2 * Copyright (c) 2000-2009 Nokia Corporation and/or its subsidiary(-ies). |
|
3 * All rights reserved. |
|
4 * This component and the accompanying materials are made available |
|
5 * under the terms of "Eclipse Public License v1.0" |
|
6 * which accompanies this distribution, and is available |
|
7 * at the URL "http://www.eclipse.org/legal/epl-v10.html". |
|
8 * |
|
9 * Initial Contributors: |
|
10 * Nokia Corporation - initial contribution. |
|
11 * |
|
12 * Contributors: |
|
13 * |
|
14 * Description: |
|
15 * |
|
16 */ |
|
17 |
|
18 |
|
19 #include <e32std.h> |
|
20 #include <convgeneratedcpp.h> |
|
21 #include "jisx0201.h" |
|
22 |
|
23 struct SCnvConversionData; |
|
24 |
|
25 GLREF_D const SCnvConversionData jisRomanConversionData; |
|
26 GLREF_D const SCnvConversionData halfWidthKatakana8ConversionData; |
|
27 |
|
28 EXPORT_C const SCnvConversionData& CnvJisX0201::ConversionData() |
|
29 { |
|
30 return conversionData; |
|
31 } |
|
32 |
|
33 EXPORT_C const SCnvConversionData& CnvJisRoman::ConversionData() |
|
34 { |
|
35 return jisRomanConversionData; |
|
36 } |
|
37 |
|
38 EXPORT_C const SCnvConversionData& CnvHalfWidthKatakana8::ConversionData() |
|
39 { |
|
40 return halfWidthKatakana8ConversionData; |
|
41 } |
|
42 |