equal
deleted
inserted
replaced
|
1 /* |
|
2 * Copyright (c) 2002-2009 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 * |
|
16 */ |
|
17 |
|
18 |
|
19 |
|
20 #ifndef CLFPANICS_H |
|
21 #define CLFPANICS_H |
|
22 |
|
23 // INCLUDES |
|
24 #include <e32std.h> |
|
25 |
|
26 // CONSTANTS |
|
27 _LIT( KCLFPanicText, "ContentListingFramework" ); |
|
28 |
|
29 enum TCLFPanicCodes |
|
30 { |
|
31 ECLFNullPointer = 0x1, |
|
32 ECLFIncorrectCommand = 0x2, |
|
33 ECLFNoSourcePlugins = 0x3, |
|
34 ECLFDbWorkThreadRunning = 0x4, |
|
35 ECLFInvalidDbItem = 0x5, |
|
36 ECLFDbInvalidCommand = 0x6, |
|
37 ECLFDbDatabaseCorrupt = 0x7, |
|
38 ECLFInvalidFieldType = 0x8, |
|
39 ECLFNotReady = 0x9 |
|
40 }; |
|
41 |
|
42 #endif // CLFPANICS_H |
|
43 |
|
44 // End of File |