sl@0
|
1 |
/*
|
sl@0
|
2 |
* Copyright (c) 2006-2009 Nokia Corporation and/or its subsidiary(-ies).
|
sl@0
|
3 |
* All rights reserved.
|
sl@0
|
4 |
* This component and the accompanying materials are made available
|
sl@0
|
5 |
* under the terms of "Eclipse Public License v1.0"
|
sl@0
|
6 |
* which accompanies this distribution, and is available
|
sl@0
|
7 |
* at the URL "http://www.eclipse.org/legal/epl-v10.html".
|
sl@0
|
8 |
*
|
sl@0
|
9 |
* Initial Contributors:
|
sl@0
|
10 |
* Nokia Corporation - initial contribution.
|
sl@0
|
11 |
*
|
sl@0
|
12 |
* Contributors:
|
sl@0
|
13 |
*
|
sl@0
|
14 |
* Description:
|
sl@0
|
15 |
*
|
sl@0
|
16 |
*/
|
sl@0
|
17 |
|
sl@0
|
18 |
|
sl@0
|
19 |
|
sl@0
|
20 |
#ifndef TEXT_RESOLVER_HRH
|
sl@0
|
21 |
#define TEXT_RESOLVER_HRH
|
sl@0
|
22 |
|
sl@0
|
23 |
// CONSTANTS
|
sl@0
|
24 |
|
sl@0
|
25 |
/**
|
sl@0
|
26 |
* For internal use.
|
sl@0
|
27 |
*/
|
sl@0
|
28 |
#define ETextResolverPanicErrorFlag 0x00000001
|
sl@0
|
29 |
|
sl@0
|
30 |
/**
|
sl@0
|
31 |
* For internal use.
|
sl@0
|
32 |
*/
|
sl@0
|
33 |
#define EErrorResPanicErrorFlag 0x00000001
|
sl@0
|
34 |
|
sl@0
|
35 |
/**
|
sl@0
|
36 |
* This is used to tell that error has no proper explanation.
|
sl@0
|
37 |
*/
|
sl@0
|
38 |
#define ETextResolverBlankErrorFlag 0x00000002
|
sl@0
|
39 |
|
sl@0
|
40 |
/**
|
sl@0
|
41 |
* Used for filling in empty slots in error ranges.
|
sl@0
|
42 |
*/
|
sl@0
|
43 |
#define EErrorResBlankErrorFlag 0x00000002
|
sl@0
|
44 |
|
sl@0
|
45 |
/**
|
sl@0
|
46 |
* Indicates that Text Resolver does not support the error.
|
sl@0
|
47 |
* The error can be unsupported because it's not found from
|
sl@0
|
48 |
* resource files or it's marked as unsupported in the
|
sl@0
|
49 |
* resource file.
|
sl@0
|
50 |
*/
|
sl@0
|
51 |
#define ETextResolverUnknownErrorFlag 0x00000004
|
sl@0
|
52 |
|
sl@0
|
53 |
/**
|
sl@0
|
54 |
* Used to indicate in error ranges that error resolver
|
sl@0
|
55 |
* does not support the error
|
sl@0
|
56 |
*/
|
sl@0
|
57 |
#define EErrorResUnknownErrorFlag 0x00000004
|
sl@0
|
58 |
|
sl@0
|
59 |
/**
|
sl@0
|
60 |
* Flag is returned while processing KErrNoMemory error code.
|
sl@0
|
61 |
* Due to the low memory situation the error code is processed in
|
sl@0
|
62 |
* a special way. Error resolving was performed successfully.
|
sl@0
|
63 |
*/
|
sl@0
|
64 |
#define EErrorResOOMFlag 0x00000008
|
sl@0
|
65 |
|
sl@0
|
66 |
#endif
|
sl@0
|
67 |
|
sl@0
|
68 |
// End of File
|