|
1 /* |
|
2 * Copyright (c) 2002 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 * Message Editor Utils Panics |
|
16 * Defines panic codes used in MsgEditorUtils. |
|
17 * |
|
18 */ |
|
19 |
|
20 |
|
21 |
|
22 |
|
23 |
|
24 #ifndef MSGEDITORUTILS_PAN |
|
25 #define MSGEDITORUTILS_PAN |
|
26 |
|
27 const TInt KMsgBioMessageTypeNotDefined = -2000; |
|
28 const TInt KMsgControlUidNotDefined = -2001; |
|
29 const TInt KMsgBadLibraryEntryPoint = -2002; |
|
30 |
|
31 enum TMsgEditorUtilsPanic |
|
32 { |
|
33 EMEUControlNotFocused = 0, |
|
34 EMEUIncorrectComponentIndex, |
|
35 EMEUIncorrectClipboardFunction, |
|
36 EMEUIncorrectEditFunction, |
|
37 EMEUBioControlNotExist, |
|
38 EMEUMsvSessionIsNull, |
|
39 EMEUNotFileBase, |
|
40 EMEUGeneral, |
|
41 EMEUSoftButton, |
|
42 EMEUIncrementName, |
|
43 EMEUNotSupported, |
|
44 EMEULabelLength, |
|
45 EMEUNameEmpty, |
|
46 EMEUControlAlreadySet, |
|
47 EMEUControlNotSet, |
|
48 EMEUOnlyOneLibraryAllowed, |
|
49 EMEUErrArgument, |
|
50 EMEUAsynItemSaverNULL, |
|
51 EMEUResourceFileNotFound |
|
52 }; |
|
53 |
|
54 GLDEF_C void Panic(TMsgEditorUtilsPanic aPanic); |
|
55 |
|
56 |
|
57 #endif //MSGEDITORUTILS_PAN |
|
58 |
|
59 // End of file |