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 file contains panic enumerations |
|
15 * |
|
16 */ |
|
17 |
|
18 |
|
19 #ifndef CSPPANIC_PAN |
|
20 #define CSPPANIC_PAN |
|
21 |
|
22 // INCLUDES |
|
23 #include <e32def.h> |
|
24 #include <e32cmn.h> |
|
25 |
|
26 // CONSTANTS |
|
27 |
|
28 // CSPlugin panic text |
|
29 _LIT( KCSPPanic, "CSPlugin Panic!" ); |
|
30 |
|
31 enum TCSPPanic |
|
32 { |
|
33 ECSPPanicAccessingDataOnIncompleteRequest = 1, |
|
34 ECSPPanicAllSettingsDataObjectsAlreadyInUse = 2, |
|
35 ECSPPanicBadHandle = 3, |
|
36 ECSPPanicCallDataNull = 4, |
|
37 ECSPPanicCallIndexOutOfRange = 5, |
|
38 ECSPPanicConferenceIndexOutOfRange = 6, |
|
39 ECSPPanicDebugDangerousMove = 7, |
|
40 ECSPPanicIllegalCommand = 8, |
|
41 ECSPPanicIndexOutOfRange = 9, |
|
42 ECSPPanicInvalidCommand = 10, |
|
43 ECSPPanicInvalidHandle = 11, |
|
44 ECSPPanicInvalidMode = 12, |
|
45 ECSPPanicInvalidRequest = 13, |
|
46 ECSPPanicInvalidRequestId = 14, |
|
47 ECSPPanicInvalidState = 15, |
|
48 ECSPPanicLineNotFound = 16, |
|
49 ECSPPanicNoCallInState = 17, |
|
50 ECSPPanicNoCallOrLine = 18, |
|
51 ECSPPanicNoConferenceCall = 19, |
|
52 ECSPPanicNoErrorCodeInSuccessfulRequest = 20, |
|
53 ECSPPanicNoEtel = 21, |
|
54 ECSPPanicNoFreeCalls = 22, |
|
55 ECSPPanicNoObserver = 23, |
|
56 ECSPPanicNoPhoneServer = 24, |
|
57 ECSPPanicNoRepository = 25, |
|
58 ECSPPanicNotCompleted = 26, |
|
59 ECSPPanicNullPointer = 27, |
|
60 ECSPPanicObserverAlreadySet = 28, |
|
61 ECSPPanicRepositoryAlreadyActive = 29, |
|
62 ECSPPanicPropertyAlreadyActive = 30, |
|
63 ECSPPanicSplitWithoutConference = 31, |
|
64 ECSPPanicUIHasBeenLeaved = 32, |
|
65 ECSPPanicVideoLibraryNotFound = 33, |
|
66 ECSPPanicInvalidIncomingCallMonitor = 34, |
|
67 ECSPPanicInvalidCallAddedMonitor = 35, |
|
68 ECSPPanicInvalidCallEventMonitor = 36, |
|
69 ECSPPanicExternalDataIdOutOfRange = 37, |
|
70 ECSPPanicCallIsAlreadyAddedToConference = 38, |
|
71 ECSPPanicInvalidParameter = 39, |
|
72 ECSPPanicDataConnectionInitError = 40, |
|
73 ECSPPanicTimerAlreadyActive = 41, |
|
74 |
|
75 ECSPPanicMaximum = 100 |
|
76 }; |
|
77 |
|
78 // MACROS |
|
79 // None. |
|
80 |
|
81 // DATA TYPES |
|
82 // None. |
|
83 |
|
84 // FUNCTION PROTOTYPES |
|
85 // None. |
|
86 |
|
87 // FORWARD DECLARATIONS |
|
88 // None. |
|
89 |
|
90 // CLASS DECLARATION |
|
91 // None. |
|
92 |
|
93 GLREF_C void Panic( TCSPPanic aPanic ); |
|
94 |
|
95 #endif |
|