|
1 /* |
|
2 * Copyright (c) 2002 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: NotMtmUiDll implementation |
|
15 * |
|
16 */ |
|
17 |
|
18 |
|
19 |
|
20 // ========== INCLUDE FILES ================================ |
|
21 |
|
22 #include <e32std.h> // for GLDEF_C |
|
23 |
|
24 #include "NotMtmUiPanic.h" // for panic enums |
|
25 |
|
26 // ========== EXTERNAL DATA STRUCTURES ===================== |
|
27 |
|
28 // ========== EXTERNAL FUNCTION PROTOTYPES ================= |
|
29 |
|
30 // ========== CONSTANTS ==================================== |
|
31 |
|
32 // ========== MACROS ======================================= |
|
33 |
|
34 // ========== LOCAL CONSTANTS AND MACROS =================== |
|
35 _LIT( KModuleName, "NotMtmUi" ); |
|
36 |
|
37 // ========== MODULE DATA STRUCTURES ======================= |
|
38 |
|
39 // ========== LOCAL FUNCTION PROTOTYPES ==================== |
|
40 |
|
41 // ========== LOCAL FUNCTIONS ============================== |
|
42 |
|
43 // ========== MEMBER FUNCTIONS ============================= |
|
44 |
|
45 // ========== OTHER EXPORTED FUNCTIONS ===================== |
|
46 |
|
47 // --------------------------------------------------------- |
|
48 // Panic |
|
49 // |
|
50 // --------------------------------------------------------- |
|
51 // |
|
52 GLDEF_C void Panic( TMmsMtmUiPanic aPanic ) |
|
53 { |
|
54 User::Panic( KModuleName, aPanic ); |
|
55 } |
|
56 |
|
57 // End of File |