equal
deleted
inserted
replaced
|
1 /* |
|
2 * Copyright (c) 2002-2004 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 Contact Hanling |
|
15 * panic function |
|
16 * |
|
17 */ |
|
18 |
|
19 |
|
20 |
|
21 // INCLUDE FILES |
|
22 #include <pepanic.pan> |
|
23 #include "e32std.h" |
|
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 |
|
49 // ==================== LOCAL FUNCTIONS ===================================== |
|
50 // None |
|
51 |
|
52 // ================= MEMBER FUNCTIONS ======================================= |
|
53 // None |
|
54 |
|
55 // ================= OTHER EXPORTED FUNCTIONS =============================== |
|
56 |
|
57 // ----------------------------------------------------------------------------- |
|
58 // Panic implements... |
|
59 // Contact Handling panic function |
|
60 // Returns: None |
|
61 // ----------------------------------------------------------------------------- |
|
62 // |
|
63 GLDEF_C void Panic |
|
64 ( |
|
65 TPEPanic aPanic |
|
66 ) |
|
67 { |
|
68 _LIT(KPEContactHandlingPanic,"ContactHandling Panic!"); |
|
69 User::Panic( KPEContactHandlingPanic, aPanic); |
|
70 } |
|
71 |
|
72 // End of File |