emailuis/uicomponents/src/fsgenericpanic.cpp
changeset 0 8466d47a6819
equal deleted inserted replaced
-1:000000000000 0:8466d47a6819
       
     1 /*
       
     2 * Copyright (c) 2007 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:  Panic helper functions for fs_generic.dll
       
    15 *
       
    16 */
       
    17 
       
    18 
       
    19 #include "emailtrace.h"
       
    20 #include <e32std.h> // User::Panic
       
    21 
       
    22 #include "fsgenericpanic.h" // TFsGenericPanicReason
       
    23 
       
    24 
       
    25 // ======== GLOBAL FUNCTIONS ========
       
    26 
       
    27 // ---------------------------------------------------------------------------
       
    28 // Panics the application with the requested panic code
       
    29 // ---------------------------------------------------------------------------
       
    30 //
       
    31 #ifdef _DEBUG
       
    32 void FsGenericPanic( const TFsGenericPanicReason aReason )
       
    33     {
       
    34     /**
       
    35      * Panic category for User::Panic.
       
    36      */
       
    37     _LIT( KFsGenericPanicCategory, "Fs Generic" );
       
    38 
       
    39     User::Panic( KFsGenericPanicCategory, aReason );
       
    40     }
       
    41 #else // !_DEBUG
       
    42 void FsGenericPanic( const TFsGenericPanicReason )
       
    43     {
       
    44     FUNC_LOG;
       
    45     }
       
    46 #endif // _DEBUG
       
    47 
       
    48