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: |
|
15 * DLL entry point |
|
16 * |
|
17 */ |
|
18 |
|
19 |
|
20 |
|
21 // INCLUDE FILES |
|
22 #include <e32std.h> |
|
23 #include "mmsconst.h" |
|
24 |
|
25 // EXTERNAL DATA STRUCTURES |
|
26 |
|
27 // EXTERNAL FUNCTION PROTOTYPES |
|
28 |
|
29 // CONSTANTS |
|
30 |
|
31 // MACROS |
|
32 |
|
33 // LOCAL CONSTANTS AND MACROS |
|
34 |
|
35 // MODULE DATA STRUCTURES |
|
36 |
|
37 // LOCAL FUNCTION PROTOTYPES |
|
38 |
|
39 // ==================== LOCAL FUNCTIONS ==================== |
|
40 |
|
41 |
|
42 // ================= OTHER EXPORTED FUNCTIONS ============== |
|
43 |
|
44 // --------------------------------------------------------- |
|
45 // gPanic implements |
|
46 // panic function, should be used by debug version only |
|
47 // |
|
48 GLDEF_C void gPanic( |
|
49 TMmsPanic aPanic ) // error number enumerations |
|
50 { |
|
51 _LIT(KMmsPanic,"MMS"); |
|
52 User::Panic( KMmsPanic, aPanic ); |
|
53 } |
|
54 |
|
55 // End of File |
|
56 |