securitydialogs/simlockui/inc/SimLockUI.pan
branchRCL_3
changeset 50 03674e5abf46
parent 1 d5423fbb4f29
equal deleted inserted replaced
49:09b1ac925e3f 50:03674e5abf46
       
     1  /*
       
     2 * ============================================================================
       
     3 * Name        : SimLockUI.pan
       
     4 * Version     : 
       
     5 * 
       
     6 * Copyright (c) 2005-2010 Nokia Corporation and/or its subsidiary(-ies).
       
     7 * All rights reserved.
       
     8 * This component and the accompanying materials are made available
       
     9 * under the terms of "Eclipse Public License v1.0"
       
    10 * which accompanies this distribution, and is available
       
    11 * at the URL "http://www.eclipse.org/legal/epl-v10.html".
       
    12 *
       
    13 * Initial Contributors:
       
    14 * Nokia Corporation - initial contribution.
       
    15 *
       
    16 * Contributors:
       
    17 *
       
    18 * Description:   Build info file for Ado domain appinstall 
       
    19 * ============================================================================
       
    20 */
       
    21 
       
    22 #ifndef __SIMLOCKUI_PAN__
       
    23 #define __SIMLOCKUI_PAN__
       
    24 
       
    25 /** SimLockUI application panic codes */
       
    26 enum TSimLockUIPanics 
       
    27     {
       
    28     ESimLockUIBasicUi = 1,
       
    29     ESimLockUIUnableToReadSimLock
       
    30     // add further panics here
       
    31     };
       
    32 
       
    33 inline void Panic(TSimLockUIPanics aReason)
       
    34     {    
       
    35 	_LIT(applicationName,"SimLockUI"); //lint !e1534 static variable OK
       
    36     User::Panic(applicationName, aReason);
       
    37     }
       
    38 
       
    39 #endif // __SIMLOCKUI_PAN__