sl@0: /* sl@0: * Copyright (c) 2006-2009 Nokia Corporation and/or its subsidiary(-ies). sl@0: * All rights reserved. sl@0: * This component and the accompanying materials are made available sl@0: * under the terms of "Eclipse Public License v1.0" sl@0: * which accompanies this distribution, and is available sl@0: * at the URL "http://www.eclipse.org/legal/epl-v10.html". sl@0: * sl@0: * Initial Contributors: sl@0: * Nokia Corporation - initial contribution. sl@0: * sl@0: * Contributors: sl@0: * sl@0: * Description: sl@0: * sl@0: */ sl@0: sl@0: sl@0: sl@0: #ifndef TEXT_RESOLVER_HRH sl@0: #define TEXT_RESOLVER_HRH sl@0: sl@0: // CONSTANTS sl@0: sl@0: /** sl@0: * For internal use. sl@0: */ sl@0: #define ETextResolverPanicErrorFlag 0x00000001 sl@0: sl@0: /** sl@0: * For internal use. sl@0: */ sl@0: #define EErrorResPanicErrorFlag 0x00000001 sl@0: sl@0: /** sl@0: * This is used to tell that error has no proper explanation. sl@0: */ sl@0: #define ETextResolverBlankErrorFlag 0x00000002 sl@0: sl@0: /** sl@0: * Used for filling in empty slots in error ranges. sl@0: */ sl@0: #define EErrorResBlankErrorFlag 0x00000002 sl@0: sl@0: /** sl@0: * Indicates that Text Resolver does not support the error. sl@0: * The error can be unsupported because it's not found from sl@0: * resource files or it's marked as unsupported in the sl@0: * resource file. sl@0: */ sl@0: #define ETextResolverUnknownErrorFlag 0x00000004 sl@0: sl@0: /** sl@0: * Used to indicate in error ranges that error resolver sl@0: * does not support the error sl@0: */ sl@0: #define EErrorResUnknownErrorFlag 0x00000004 sl@0: sl@0: /** sl@0: * Flag is returned while processing KErrNoMemory error code. sl@0: * Due to the low memory situation the error code is processed in sl@0: * a special way. Error resolving was performed successfully. sl@0: */ sl@0: #define EErrorResOOMFlag 0x00000008 sl@0: sl@0: #endif sl@0: sl@0: // End of File