equal
deleted
inserted
replaced
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__ |
|