os/ossrv/lowlevellibsandfws/pluginfw/Framework/inc/EComErrorCodes.h
changeset 0 bde4ae8d615e
     1.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     1.2 +++ b/os/ossrv/lowlevellibsandfws/pluginfw/Framework/inc/EComErrorCodes.h	Fri Jun 15 03:10:57 2012 +0200
     1.3 @@ -0,0 +1,183 @@
     1.4 +// Copyright (c) 1997-2009 Nokia Corporation and/or its subsidiary(-ies).
     1.5 +// All rights reserved.
     1.6 +// This component and the accompanying materials are made available
     1.7 +// under the terms of "Eclipse Public License v1.0"
     1.8 +// which accompanies this distribution, and is available
     1.9 +// at the URL "http://www.eclipse.org/legal/epl-v10.html".
    1.10 +//
    1.11 +// Initial Contributors:
    1.12 +// Nokia Corporation - initial contribution.
    1.13 +//
    1.14 +// Contributors:
    1.15 +//
    1.16 +// Description:
    1.17 +// All the ECOM specific error codes returned by the ECOM API to a client
    1.18 +// are defined here.
    1.19 +// 
    1.20 +//
    1.21 +
    1.22 +/**
    1.23 + @file
    1.24 + @publishedAll
    1.25 + @released
    1.26 +*/
    1.27 +
    1.28 +#ifndef __ECOMERRORCODES_H__
    1.29 +#define __ECOMERRORCODES_H__
    1.30 +
    1.31 +#ifndef SYMBIAN_ENABLE_SPLIT_HEADERS
    1.32 +#include <ecom/ecomextendedinterfaceerrorcodes.h>
    1.33 +#endif
    1.34 +
    1.35 +/**
    1.36 +The base value for Shared Error codes for the ECOM framework and client
    1.37 +*/
    1.38 +const TInt KEComErrBase								= -17000;
    1.39 +
    1.40 +/**
    1.41 +The last value for ECom Frmework errors
    1.42 +This must be modified when error codes are added/deleted
    1.43 +*/
    1.44 +const TInt KEComErrLast								= -17033;
    1.45 +
    1.46 +//
    1.47 +// Error codes which may be received by a client application
    1.48 +//
    1.49 +/**
    1.50 +The call to instantiate an Interface Implementation failed
    1.51 +because no registrations exist for this interface.
    1.52 +*/
    1.53 +const TInt KEComErrNoInterfaceIdentified			= -17004;
    1.54 +
    1.55 +/**
    1.56 +The Non-Default resolver could not be instantiated.  The most likely
    1.57 +situation is that an incorrect implementation uid was supplied.
    1.58 +*/
    1.59 +const TInt KEComErrNoResolver						= -17014;
    1.60 +
    1.61 +/**
    1.62 +The client has requested too many notifications.  ECom can only support
    1.63 +a finite number of notifications
    1.64 +*/
    1.65 +const TInt KEComErrTooManyNotificationsOutstanding	= -17026;
    1.66 +
    1.67 +/**
    1.68 +An ECom service was requested with an essential parameter missing.  For example,
    1.69 +this error code will be supplied when calling an overload of CreateImplementationL
    1.70 +which uses a non-default resolver if you fail to supply the resolver
    1.71 +*/
    1.72 +const TInt KEComErrMissingParameter					= -17028;
    1.73 +
    1.74 +/** The registry index is invalid but the client has requested notifications - so
    1.75 +they will receive a notification when the index is ready again
    1.76 +*/
    1.77 +const TInt KEComErrListInvalidAwaitNotification		= -17029;
    1.78 +
    1.79 +/**
    1.80 +The registry index is invalid and the client has not requested notifications.
    1.81 +They will have to try again later after discoveries have completed.
    1.82 +*/
    1.83 +const TInt KEComErrListCurrentlyUnavailable			= -17030;
    1.84 +
    1.85 +
    1.86 +//
    1.87 +// Codes which are only used for Panics
    1.88 +//
    1.89 +/**
    1.90 +The Client requested a service which is not supplied by this framework
    1.91 +*/
    1.92 +const TInt KEComErrUnknownService					= -17002;
    1.93 +
    1.94 +/**
    1.95 +The Interface Implementation reference count is invalid
    1.96 +*/
    1.97 +const TInt KEComErrReferenceCountInvalid			= -17013;
    1.98 +
    1.99 +/**
   1.100 +The Interface Implementations destruction could not be recorded
   1.101 +*/
   1.102 +const TInt KEComErrDestructionFailed				= -17017;
   1.103 +
   1.104 +/**
   1.105 +The uid from a resource plugin does not match the uid from its
   1.106 +corrsponding DLL.
   1.107 +*/
   1.108 +const TInt KEComErrMismatchedTags					= -17023;
   1.109 +
   1.110 +/**
   1.111 +The scanning timer for re-discovering plugins is not found in the list
   1.112 +of scanning timers.
   1.113 +*/
   1.114 +const TInt KEComErrNotFoundScanTimer					= -17033;
   1.115 +
   1.116 +/**
   1.117 +The client called DestroyedImplementation with a destruction
   1.118 +key of NULL.  This is an irrecoverable error because the object
   1.119 +cannot be deleted.
   1.120 +*/
   1.121 +const TInt KEComErrDestroyingWithNullDtorKey		= -17027;
   1.122 +
   1.123 +//
   1.124 +// Codes which are currently unused but reserved for future expansion
   1.125 +//
   1.126 +/**
   1.127 +The call to Enable the registered Interface Implementation failed
   1.128 +*/
   1.129 +const TInt KEComErrEnableFailed						= -17005;
   1.130 +
   1.131 +/**
   1.132 +The call to Disable the registered Interface Implementation failed
   1.133 +*/
   1.134 +const TInt KEComErrDisableFailed					= -17006;
   1.135 +
   1.136 +/**
   1.137 +The call to instantiate an Interface Implementation failed
   1.138 +because no appropriate implementation was found.
   1.139 +*/
   1.140 +const TInt KEComErrNoRegistrationsFound				= -17007;
   1.141 +
   1.142 +/**
   1.143 +The call to Remove the registered Interface Implementation failed
   1.144 +*/
   1.145 +const TInt KEComErrUninstallFailed					= -17009;
   1.146 +
   1.147 +/**
   1.148 +The call to Re-register an Interface Implementation failed
   1.149 +*/
   1.150 +const TInt KEComErrReinstallFailed					= -17010;
   1.151 +
   1.152 +/**
   1.153 +The call to Register an Interface Implementation failed
   1.154 +*/
   1.155 +const TInt KEComErrRegistrationFailed				= -17011;
   1.156 +
   1.157 +/**
   1.158 +The client does not have a session open with the framework
   1.159 +*/
   1.160 +const TInt KEComErrNotConnected						= -17012;
   1.161 +
   1.162 +/**
   1.163 +The call to Suspend registration activities failed
   1.164 +*/
   1.165 +const TInt KEComErrSuspendFailed					= -17015;
   1.166 +
   1.167 +/**
   1.168 +The call to Resume registration activities failed
   1.169 +*/
   1.170 +const TInt KEComErrResumeFailed						= -17016;
   1.171 +
   1.172 +/**
   1.173 +An attempt has been made to add a drive to the registry which
   1.174 +already exists
   1.175 +*/
   1.176 +const TInt KEComErrDriveAlreadyInstalled			= -17018;
   1.177 +
   1.178 +/**
   1.179 +An IIC has been found which does not have a corresponding
   1.180 +registration information file
   1.181 +*/
   1.182 +const TInt KEComErrNoRegistrationData				= -17021;
   1.183 +
   1.184 +
   1.185 +
   1.186 +#endif	// __ECOMERRORCODES_H__