charconvfw/charconvplugins/group/ShiftJisDirectmap.mmp
changeset 0 1fb32624e06b
child 28 26914f8d1faf
equal deleted inserted replaced
-1:000000000000 0:1fb32624e06b
       
     1 /*
       
     2 * Copyright (c) 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:     This module is a plug-in module for Shift-JIS with Pictograph.
       
    15 *                Basicaly, Vodafone Pictograph is encoded by ISO2022, 
       
    16 *                but Japanese FEP needs a pictograph as one character code 
       
    17 *                in Shift-JIS character code set.
       
    18 *
       
    19 */
       
    20 
       
    21 
       
    22 
       
    23 #ifdef EKA2
       
    24 ///////////////////////////////////////////////////////////////
       
    25 // 3.0 Code
       
    26 TARGET               ShiftJisDirectmap.dll
       
    27 TARGETTYPE           PLUGIN
       
    28 CAPABILITY           All -Tcb
       
    29 
       
    30 uid                  0x10009D8D 0x10207354
       
    31 VENDORID		0x70000001
       
    32 
       
    33 SOURCEPATH			../src/plugins
       
    34 
       
    35 OS_LAYER_SYSTEMINCLUDE_SYMBIAN
       
    36 USERINCLUDE		../inc
       
    37 USERINCLUDE		../src/inc
       
    38 USERINCLUDE		../src/shared
       
    39 
       
    40 source               ShiftJisDirectmap.CPP
       
    41 
       
    42 LIBRARY              euser.lib
       
    43 LIBRARY              charconv.lib
       
    44 LIBRARY              ecom.lib
       
    45 //use CnvShiftJis::ReplacementForUnconvertibleUnicodeCharacters()
       
    46 //library              shiftjis_kddiau_shared.lib
       
    47 library              convutils.lib
       
    48 library              jisx0201_2.lib
       
    49 library              jisx0208_2.lib
       
    50 library              CnvShiftJisDirectmap.lib
       
    51 
       
    52 SOURCEPATH		../resource
       
    53 Start resource       ShiftJisDirectmap.RSS
       
    54 Targetpath           /resource/charconv
       
    55 End
       
    56 
       
    57 start resource       10207354.rss
       
    58 target               ShiftJisDirectmap.RSC
       
    59 end
       
    60 
       
    61 SMPSAFE
       
    62 
       
    63 ///////////////////////////////////////////////////////////////
       
    64 #else // Not EKA2
       
    65 ///////////////////////////////////////////////////////////////
       
    66 // 2.8 Code
       
    67 target          ShiftJisDirectmap.CPL
       
    68 targetpath      /system/charconv
       
    69 targettype      dll
       
    70 uid             0x1000601a 0x101F8691
       
    71 
       
    72 SOURCEPATH			../src/plugins
       
    73 USERINCLUDE ../inc
       
    74 source          ShiftJisDirectmap.CPP
       
    75 
       
    76 library         euser.lib
       
    77 //use CnvShiftJis::ReplacementForUnconvertibleUnicodeCharacters()
       
    78 //library         shiftjis_kddiau_shared.lib
       
    79 library         convutils.lib
       
    80 library         jisx0201_2.lib
       
    81 library         jisx0208_2.lib
       
    82 library         CnvShiftJisDirectmap.lib
       
    83 
       
    84 SOURCEPATH		../resource
       
    85 start resource  ShiftJisDirectmap.RSS
       
    86 lang            sc
       
    87 end
       
    88 
       
    89 #if defined(ARMCC)
       
    90 deffile         /epoc32/include/def/EABI/CONVPLUG.DEF 
       
    91 #elif defined(WINSCW)
       
    92 deffile         /epoc32/release/winscw/CONVPLUG.DEF 
       
    93 #elif defined(WINS)
       
    94 deffile         /epoc32/release/wins/CONVPLUG.DEF 
       
    95 #else
       
    96 deffile         /epoc32/release/marm/CONVPLUG.DEF 
       
    97 #endif
       
    98 
       
    99 CAPABILITY      CAP_GENERAL_DLL
       
   100 ///////////////////////////////////////////////////////////////
       
   101 #endif