appinstaller/AppinstUi/sisxsifplugin/inc/sisxsifpluginerrors.h
branchRCL_3
changeset 26 8b7f4e561641
parent 25 7333d7932ef7
child 27 e8965914fac7
equal deleted inserted replaced
25:7333d7932ef7 26:8b7f4e561641
     1 /*
       
     2 * Copyright (c) 2008-2010 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:  Detailed error codes for KErrPermissionDenined errors.
       
    15 *
       
    16 */
       
    17 
       
    18 #ifndef SISXSIFPLUGINERRORS_H
       
    19 #define SISXSIFPLUGINERRORS_H
       
    20 
       
    21 enum TSisxSifPluginErrors
       
    22     {
       
    23     ESifUiTrustedUICapabilityRequired = 1,      // TrustedUI capability required.
       
    24     ESifUIAllFilesCapabilityRequired = 2,       // AllFiles capability required.
       
    25     ESifUiNeedsAllowUntrustedParameter = 3,     // Cannot install untrusted package without AllowUntrusted parameter.
       
    26     ESifUiNeedsPackageInfoParameter = 4,        // Cannot install package displaying infos without PackageInfo parameter.
       
    27     ESifUiNeedsAllowAppBreakDependencyParameter = 5, // Uninstall breaks dependencies. Cannot uninstall without AllowAppBreakDependency parameter.
       
    28     ESifUiNeedsAllowAppShutdownParameter = 6,   // Application is running. Cannot uninstall without AllowAppShutdown parameter.
       
    29     ESifUiNeedsAllowIncompatibleParameter = 7,  // Cannot install incompatible package without AllowIncompatible parameter.
       
    30     ESifUiNeedsAllowOverwriteParameter = 8,     // Cannot overwrite existing file which is not part of any package without AllowOverwrite parameter.
       
    31     ESifUiNeedsGrantCapabilitiesParameter = 9,  // Cannot install package requesting user capabilities without GrantCapabilities parameter.
       
    32     ESifUiCannotOverwriteFile = 99              // Cannot overwrite file
       
    33     };
       
    34 
       
    35 #endif // SISXSIFPLUGINERRORS_H
       
    36