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 audiohanling panic function |
|
15 * |
|
16 */ |
|
17 |
|
18 |
|
19 // INCLUDE FILES |
|
20 #include <pepanic.pan> |
|
21 #include "e32std.h" |
|
22 |
|
23 // EXTERNAL DATA STRUCTURES |
|
24 // None. |
|
25 |
|
26 // EXTERNAL FUNCTION PROTOTYPES |
|
27 // None. |
|
28 |
|
29 // CONSTANTS |
|
30 // None. |
|
31 |
|
32 // MACROS |
|
33 // None. |
|
34 |
|
35 // LOCAL CONSTANTS AND MACROS |
|
36 // None. |
|
37 |
|
38 // MODULE DATA STRUCTURES |
|
39 // None. |
|
40 |
|
41 // LOCAL FUNCTION PROTOTYPES |
|
42 // None. |
|
43 |
|
44 // ==================== LOCAL FUNCTIONS ======================================== |
|
45 |
|
46 // ----------------------------------------------------------------------------- |
|
47 // Panic |
|
48 // Creates audiohandling panic |
|
49 // Returns: None. |
|
50 // ----------------------------------------------------------------------------- |
|
51 // |
|
52 GLDEF_C void Panic |
|
53 ( |
|
54 TPEPanic aPanic |
|
55 ) |
|
56 { |
|
57 _LIT( text, "AudioHandling Panic!" ); |
|
58 User::Panic( text, aPanic ); |
|
59 } |
|
60 |
|
61 // ==================== MEMBER FUNCTIONS ======================================= |
|
62 // None. |
|
63 |
|
64 // ================= OTHER EXPORTED FUNCTIONS ================================== |
|
65 // None. |
|
66 |
|
67 // End of File |