homescreenpluginsrv/hspsmanager/inc/hspsuimanagererrorcodes.h
changeset 0 79c6a41cd166
equal deleted inserted replaced
-1:000000000000 0:79c6a41cd166
       
     1 /*
       
     2 * Copyright (c) 2002-2004 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:  Includes the error codes of UI Manager.
       
    15 *
       
    16 */
       
    17 
       
    18 
       
    19 #ifndef __hspsUIMANAGERERRORCODES_H__
       
    20 #define __hspsUIMANAGERERRORCODES_H__
       
    21 
       
    22 /**
       
    23  *
       
    24  * Error code definitions used in UI Manager
       
    25  *
       
    26  */
       
    27 
       
    28 
       
    29 // CONSTANTS
       
    30 /**
       
    31  * Wrong manifest file.
       
    32  */
       
    33 const TInt KErrWrongManifestFile                    = -32274;
       
    34 
       
    35 /**
       
    36  * Application UID element is not found from the manifest file.
       
    37  */
       
    38 const TInt KErrAppUidDefinitionMissing              = -32275;
       
    39 
       
    40 /**
       
    41  * Provider UID element is not found from the manifest file.
       
    42  */
       
    43 const TInt KErrProviderUidDefinitionMissing         = -32276;
       
    44 
       
    45 /**
       
    46  * Theme UID element is not found from the manifest file.
       
    47  */
       
    48 const TInt KErrThemeUidDefinitionMissing            = -32277;
       
    49 
       
    50 /**
       
    51  * Parsing of the manifest file failed.
       
    52  */
       
    53 const TInt KErrManifestFileCorrupted                = -32278;
       
    54 
       
    55 /**
       
    56  * Theme full name element not found from the manifest file.
       
    57  */
       
    58 const TInt KErrThemeFullNameDefinitionMissing       = -32279;
       
    59 
       
    60 /**
       
    61  * Theme short name element not found from the manifest file.
       
    62  */
       
    63 const TInt KErrThemeShortDefinitionNameMissing      = -32280;
       
    64 
       
    65 /**
       
    66  * Theme version element not found from the manifest file.
       
    67  */
       
    68 const TInt KErrThemeVersionDefinitionMissing        = -32281;
       
    69 
       
    70 /**
       
    71  * The XML file name element not found from the manifest file.
       
    72  */
       
    73 const TInt KErrXmlFileDefinitionMissing             = -32282;
       
    74 
       
    75 /**
       
    76  * The XML file not found.
       
    77  */
       
    78 const TInt KErrXmlFileNotFound                      = -32283;
       
    79 
       
    80 /**
       
    81  * The CSS file name element not found from the manifest file.
       
    82  */
       
    83 const TInt KErrCssFileDefinitionMissing             = -32284;
       
    84 
       
    85 /**
       
    86  * The CSS file not found.
       
    87  */
       
    88 const TInt KErrCssFileNotFound                      = -32285;
       
    89 
       
    90 /**
       
    91  * The resource file not found.
       
    92  */
       
    93 const TInt KErrResourceFileNotFound                 = -32286;
       
    94 
       
    95 /**
       
    96  * The DTD file name element is not found from the main manifest file.
       
    97  */
       
    98 const TInt KErrDtdFileNotFound                      = -32287;
       
    99 
       
   100 /**
       
   101  * The application UID specified in the manifest file is not within 
       
   102  * the correct range (0x00000000 - 0xFFFFFFFF).
       
   103  */
       
   104 const TInt KErrWrongAppUid                          = -32288;
       
   105 
       
   106 /**
       
   107  * The installation is not allowed for some reason.
       
   108  */
       
   109 const TInt KErrIllegalInstallation                  = -32289;
       
   110 
       
   111 /**
       
   112  * The DAT file not found.
       
   113  */
       
   114 const TInt KErrDatFileNotFound                      = -32290;
       
   115 
       
   116 /**
       
   117  * The installation failed because there was a locked theme with
       
   118  * the same identity on ROM.
       
   119  */
       
   120 const TInt KErrThemeStatusLocked                      = -32291;
       
   121 
       
   122 /**
       
   123  * The interface UID specified in the manifest file is not within 
       
   124  * the correct range (0x00000000 - 0xFFFFFFFF).
       
   125  */
       
   126 const TInt KErrWrongIfUid                          = -32292;
       
   127 
       
   128 /**
       
   129  * Unspecified Xuikon error.
       
   130  */
       
   131 const TInt KErrOtherXuikonError                     = -322122;
       
   132 
       
   133 
       
   134 #endif      // __hspsUIMANAGERERRORCODES_H__   
       
   135             
       
   136 // End of File