convergedcallengine/csplugin/src/csppanic.cpp
branchRCL_3
changeset 20 987c9837762f
parent 0 ff3b6d0fd310
equal deleted inserted replaced
19:7d48bed6ce0c 20:987c9837762f
       
     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:  This module contains the implementation of panic function for
       
    15 *                for CS-plugin.
       
    16 *
       
    17 */
       
    18 
       
    19 
       
    20 // INCLUDE FILES
       
    21 #include "csppanic.pan"
       
    22 #include "e32std.h"
       
    23 
       
    24 // EXTERNAL DATA STRUCTURES
       
    25 // None.
       
    26 
       
    27 // EXTERNAL FUNCTION PROTOTYPES  
       
    28 // None.
       
    29 
       
    30 // CONSTANTS
       
    31 // None.
       
    32 
       
    33 // MACROS
       
    34 // None.
       
    35 
       
    36 // LOCAL CONSTANTS AND MACROS
       
    37 // None.
       
    38 
       
    39 // MODULE DATA STRUCTURES
       
    40 // None.
       
    41 
       
    42 // LOCAL FUNCTION PROTOTYPES
       
    43 // None.
       
    44 
       
    45 // ==================== LOCAL FUNCTIONS ====================
       
    46 
       
    47 // -----------------------------------------------------------------------------
       
    48 // Panic
       
    49 // Creates PhoneEngine panic.
       
    50 // Returns: None.
       
    51 // -----------------------------------------------------------------------------
       
    52 //
       
    53 GLDEF_C void Panic( TCSPPanic aPanic )
       
    54     {
       
    55     User::Panic( KCSPPanic, aPanic );
       
    56     }
       
    57 
       
    58 // ===================== MEMBER FUNCTIONS ==================
       
    59 // None.
       
    60 
       
    61 // ================= OTHER EXPORTED FUNCTIONS ==============
       
    62 // None.
       
    63 
       
    64 // End of File