uiutils/AknJapaneseReading/src/AknJapaneseReadingDLL.cpp
changeset 47 2f0c06423c72
parent 46 0e1e0022bd03
child 53 3c67ea82fafc
equal deleted inserted replaced
46:0e1e0022bd03 47:2f0c06423c72
     1 /*
       
     2 * Copyright (c) 2002-2004 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:  E32Dll and Panic definitions.
       
    15 *
       
    16 */
       
    17 
       
    18 
       
    19 // INCLUDE FILES
       
    20 #include <e32base.h>
       
    21 #include "AknJapaneseReadingDLL.h"
       
    22 
       
    23 // -----------------------------------------------------------------------------
       
    24 // Static DLL functions
       
    25 // -----------------------------------------------------------------------------
       
    26 //
       
    27 
       
    28 GLDEF_C void Panic(TAknJapaneseReadingPanic aPanic)
       
    29     {
       
    30     _LIT(KPanicDll,"AknJapaneseReading");
       
    31     User::Panic(KPanicDll, aPanic);
       
    32     }
       
    33 
       
    34 // End of File