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