epoc32/include/textresolver.hrh
author William Roberts <williamr@symbian.org>
Wed, 31 Mar 2010 12:33:34 +0100
branchSymbian3
changeset 4 837f303aceeb
parent 2 2fe1408b6811
permissions -rw-r--r--
Current Symbian^3 public API header files (from PDK 3.0.h)
This is the epoc32/include tree with the "platform" subtrees removed, and
all but a selected few mbg and rsg files removed.
     1 /*
     2 * Copyright (c) 2006-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 TEXT_RESOLVER_HRH
    21 #define TEXT_RESOLVER_HRH
    22 
    23 //  CONSTANTS  
    24 
    25 /**
    26 * For internal use.
    27 */
    28 #define ETextResolverPanicErrorFlag    0x00000001
    29 
    30 /**
    31 * For internal use.
    32 */
    33 #define EErrorResPanicErrorFlag    0x00000001
    34 
    35 /**
    36 * This is used to tell that error has no proper explanation.
    37 */
    38 #define ETextResolverBlankErrorFlag    0x00000002
    39 
    40 /**
    41 * Used for filling in empty slots in error ranges.
    42 */
    43 #define EErrorResBlankErrorFlag        0x00000002
    44 
    45 /**
    46 * Indicates that Text Resolver does not support the error. 
    47 * The error can be unsupported because it's not found from 
    48 * resource files or it's marked as unsupported in the 
    49 * resource file.
    50 */
    51 #define ETextResolverUnknownErrorFlag   0x00000004 
    52 
    53 /**
    54 * Used to indicate in error ranges that error resolver 
    55 * does not support the error
    56 */
    57 #define EErrorResUnknownErrorFlag    0x00000004 
    58 
    59 /**
    60 * Flag is returned while processing KErrNoMemory error code. 
    61 * Due to the low memory situation the error code is processed in 
    62 * a special way. Error resolving was performed successfully.
    63 */
    64 #define EErrorResOOMFlag    0x00000008
    65 
    66 #endif
    67 
    68 // End of File