sl@0: // Copyright (c) 1997-2009 Nokia Corporation and/or its subsidiary(-ies).
sl@0: // All rights reserved.
sl@0: // This component and the accompanying materials are made available
sl@0: // under the terms of "Eclipse Public License v1.0"
sl@0: // which accompanies this distribution, and is available
sl@0: // at the URL "http://www.eclipse.org/legal/epl-v10.html".
sl@0: //
sl@0: // Initial Contributors:
sl@0: // Nokia Corporation - initial contribution.
sl@0: //
sl@0: // Contributors:
sl@0: //
sl@0: // Description:
sl@0: // These Error Codes are used Internally within ECOM
sl@0: // 
sl@0: // 
sl@0: //
sl@0: 
sl@0: /**
sl@0:  @file
sl@0:  @InternalTechnology
sl@0:  @released
sl@0: */
sl@0: 
sl@0: #ifndef ECOMINTERNALERRORCODES_H__
sl@0: #define ECOMINTERNALERRORCODES_H__
sl@0: 
sl@0: 
sl@0: 
sl@0: //
sl@0: // Codes which are only used for Panics
sl@0: //
sl@0: 
sl@0: 
sl@0: /**
sl@0: An attempt has been made to update the registry information for a
sl@0: non-existent DLL.  An ECom internal error.
sl@0: */
sl@0: const TInt KEComErrInvalidRegistryData				= -17022;
sl@0: 
sl@0: 
sl@0: //
sl@0: // Error codes for internal use only
sl@0: //
sl@0: /**
sl@0: The Client requested a service which is not supplied by this framework
sl@0: */
sl@0: const TInt KEComErrInvalidUnloadPolicy				= -17003;
sl@0: 
sl@0: /**
sl@0: An attempt has been made to load an implementation contained within a dll
sl@0: which no longer exists (deleted or is on a CF card that has been removed).
sl@0: */
sl@0: const TInt KEComErrInvalidIIC						= -17008;
sl@0: 
sl@0: /**
sl@0: An attempt has been made to update registry information for a dll on a
sl@0: drive that does not exist.
sl@0: */
sl@0: const TInt KEComErrDriveNotFound					= -17019;
sl@0: 
sl@0: //
sl@0: // Codes which are currently unused but reserved for future expansion
sl@0: //
sl@0: /**
sl@0: Internal error code.
sl@0: */
sl@0: const TInt KEComErrAlreadyReceiving					= -17001;
sl@0: 
sl@0: 
sl@0: /**
sl@0: Internal error code
sl@0: */
sl@0: const TInt KEComErrIndexEntryNotFound				= -17020;
sl@0: 
sl@0: /**
sl@0: Internl error code
sl@0: */
sl@0: const TInt KEComErrInstantiationPointerNotFound		= -17024;
sl@0: 
sl@0: /**
sl@0: Internal error code
sl@0: */
sl@0: const TInt KEComErrInstantiationPointerNotAvailable = -17025;
sl@0: 
sl@0: #endif	// ECOMINTERNAL_ERRORCODES_H__