sl@0: // Copyright (c) 2008-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: // sl@0: sl@0: #ifndef ECOMPANICS_H sl@0: #define ECOMPANICS_H sl@0: sl@0: /** sl@0: The following enumaration defines the ECOM panic codes used in the ecom.dll and sl@0: ecomserver.exe binaries. They are provided for debug purposes only to help sl@0: diagnose problems. sl@0: Server panics have the category - "ECOMServer" and client DLL panics have the sl@0: category - "ECOMClientDLL". ECOM will log a message to RDebug::Print prior to sl@0: panics to give further information. sl@0: @internalComponent sl@0: */ sl@0: enum TEComPanic sl@0: { sl@0: EEComPanicUndefined = 0, sl@0: sl@0: //------------------------------------------------------------------------ sl@0: sl@0: EEComPanicClientDllBase = -16900, sl@0: sl@0: /** ECOM API used before when there is no open session to ECOM Server. sl@0: Raised on: UREL & UDEB builds */ sl@0: EEComPanic_LibraryNotInitialised = -16900, sl@0: sl@0: /** Plug-in implementation claims to support an extended object that sl@0: requires allocation/deallocation but supplies no release function. sl@0: Raised on: UDEB builds */ sl@0: EEComPanic_CInstanceInfoExtended_CreateExtObjectL_NoReleaseFunc = -16901, sl@0: sl@0: /** Plug-in implementation claims to support an extended object that sl@0: requires allocation/deallocation but failed to supply a release object. sl@0: Raised on: UDEB builds */ sl@0: EEComPanic_CInstanceInfoExtended_CreateExtObjectL_NoReleaseObj = -16902, sl@0: sl@0: /** Plug-in implementation claims to support an extended object that sl@0: requires allocation/deallocation but failed to supply a release object. sl@0: Raised on: UDEB builds */ sl@0: EEComPanic_CInstanceInfoExtended_DestroyExtObject_NoReleaseObj = -16903, sl@0: sl@0: /** Client supplied an implementation instance key which is not known to sl@0: the ECOM API i.e. it was not returned from a previous call. sl@0: Raised on: UDEB builds */ sl@0: EEComPanic_InvalidImplementationInstanceKey = -16904, sl@0: sl@0: EEComPanicClientDllEnd = -16949, sl@0: sl@0: //------------------------------------------------------------------------ sl@0: sl@0: EEComPanicServerBase = -16950, sl@0: sl@0: /** Fatal leave occurred in the CServerStartupMgr class during startup sl@0: Raised on: UREL & UDEB builds */ sl@0: EEComPanic_CServerStartupMgr_RunError = -16950, sl@0: sl@0: /** Fatal leave occurred in the CServerStartupMgr class during sl@0: plug-in (re)scanning and registration. e.g. Out of memory sl@0: Raised on: UREL & UDEB builds */ sl@0: EEComPanic_CDiscoverer_CIdleScanningTimer_RunError = -16951, sl@0: sl@0: /** Fatal leave occurred in the CIdleScanningTimer class during sl@0: plug-in (re)scanning and registration. e.g. Out of memory sl@0: Raised on: UREL & UDEB builds */ sl@0: EEComPanic_CDiscoverer_CDirChangeNotifier_RunError = -16952, sl@0: sl@0: /** Input stream used to construct CImplementationInformation has sl@0: duplicate extended interfaces UIDs. sl@0: Raised on: UDEB builds */ sl@0: EEComPanic_CImlpementationInfromation_DuplicateExIf = -16953, sl@0: sl@0: /** Plug-in resource file contains duplciate extended interface UIDs. sl@0: Raised on: UDEB builds */ sl@0: EEComPanic_CParseImplementationDataFormatVersion3_DuplicateExIf = -16954, sl@0: sl@0: /** Server invariant test. CDllData object previously found in the registry sl@0: was found to be missing during an update operation following a re-scan. sl@0: Raised on: UDEB builds */ sl@0: EEComPanic_CRegistryData_UpdateDllDataL_DllRegistrationMissing = -16955, sl@0: sl@0: EEComPanicServerEnd = -16999 sl@0: sl@0: //------------------------------------------------------------------------ sl@0: }; sl@0: sl@0: // ____________________________________________________________________________ sl@0: // FUNCTIONS sl@0: sl@0: /** sl@0: Function for clean up RExtendedInterfaceArray when leave occurs sl@0: @internalComponent sl@0: */ sl@0: extern void CloseAndDeleteArray(TAny* aPtr); sl@0: sl@0: sl@0: sl@0: #endif // ECOMPANICS_H