equal
deleted
inserted
replaced
1 /* |
|
2 * Copyright (c) 2002-2005 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 PECallHandlingPanic function |
|
15 |
|
16 * |
|
17 */ |
|
18 |
|
19 |
|
20 // INCLUDE FILES |
|
21 #include <pepanic.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 // FORWARD DECLARATIONS |
|
46 // None. |
|
47 |
|
48 // ==================== LOCAL FUNCTIONS ==================== |
|
49 // None. |
|
50 |
|
51 // ================= MEMBER FUNCTIONS ======================= |
|
52 // None |
|
53 |
|
54 // ----------------------------------------------------------------------------- |
|
55 // Panic |
|
56 // Creates call handling panic |
|
57 // (other items were commented in a header). |
|
58 // ----------------------------------------------------------------------------- |
|
59 // |
|
60 GLDEF_C void Panic |
|
61 ( |
|
62 TPEPanic aPanic |
|
63 ) |
|
64 { |
|
65 _LIT( KPanicCategoryCallHandling, "CallHandling" ); |
|
66 User::Panic( KPanicCategoryCallHandling(), aPanic ); |
|
67 } |
|
68 |
|
69 // ================= OTHER EXPORTED FUNCTIONS =============================== |
|
70 // None. |
|
71 |
|
72 // End of File |
|