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: // Define the enumeration for the service op codes sl@0: // sl@0: // sl@0: sl@0: #ifndef __ECOMMESSAGEIDS_H__ sl@0: #define __ECOMMESSAGEIDS_H__ sl@0: sl@0: #include sl@0: sl@0: /** sl@0: A Struct class used to encapsulate the parameters sl@0: required during ListImplementations sl@0: @internalComponent sl@0: */ sl@0: class TListImplParam sl@0: { sl@0: public: sl@0: TInt iMatchType; sl@0: TInt iBufferSize; sl@0: TBool iCapabilityCheck; sl@0: }; sl@0: sl@0: /** sl@0: ECom Framework service request codes sl@0: @internalComponent sl@0: */ sl@0: enum TEComServiceMessages sl@0: { sl@0: ENotifyOnChange, sl@0: ECancelNotifyOnChange, sl@0: EListImplementations, sl@0: EListResolvedImplementations, sl@0: EListCustomResolvedImplementations, sl@0: ECollectImplementationsList, sl@0: EGetImplementationCreationMethod, sl@0: EGetResolvedCreationMethod, sl@0: EGetCustomResolvedCreationMethod, sl@0: //EDestroyedImplementation obsolete due to implementation sl@0: //creation relocation to client side from server sl@0: EDestroyedImplementation, sl@0: EEnableImplementation, sl@0: EDisableImplementation, sl@0: // List interfaces sl@0: EListExtendedInterfaces, sl@0: //This is a generic message intended for testing purposes, should be the last one. sl@0: ESetGetParameters sl@0: }; sl@0: sl@0: sl@0: /** sl@0: Constants for UidType locations for service message UID parameters sl@0: @internalComponent sl@0: */ sl@0: const TInt KInterfaceUidIndex = 0; sl@0: const TInt KDtorKeyUidIndex = 1; sl@0: const TInt KResolverUidIndex = 2; sl@0: sl@0: sl@0: /** sl@0: Message slot constants for sl@0: IPC parameter passing consistency sl@0: Note : the slot range is 0-3 sl@0: @internalComponent sl@0: */ sl@0: const TInt KIPCParameterMessageDes = 0; sl@0: const TInt KIPCParameterUids = 0; sl@0: const TInt KIPCParameterDesLength = 1; sl@0: const TInt KIPCParameterResolverParams = 1; sl@0: const TInt KIPCParameterResolverParamsType = 2; sl@0: const TInt KIPCParameterMatchStrExtInf = 1; sl@0: sl@0: /** sl@0: Message slot constants for List Interfaces parameter passing sl@0: @internalComponent sl@0: */ sl@0: const TInt KIPCParameterInterfaceParam = 0; sl@0: const TInt KIPCParameterImplementationUid = 0; sl@0: const TInt KIPCParameterBufferSize = 1; sl@0: const TInt KIPCParameterInterfaceData = 2; sl@0: sl@0: /** sl@0: Matching pointer access methods for ReadL sl@0: @internalComponent sl@0: */ sl@0: #define KIPCParameterMessageDesPtr aMessage.Ptr0() sl@0: #define KIPCParameterUidsPtr aMessage.Ptr0() sl@0: #define KIPCParameterResolverParamsPtr aMessage.Ptr1() sl@0: #define KIPCParameterResolverParamsTypePtr aMessage.Int2() sl@0: sl@0: /** sl@0: @internalComponent sl@0: */ sl@0: const TInt KIPCReturnParameterUids = 0; sl@0: const TInt KIPCReturnParameterIIArray = 3; sl@0: const TInt KIPCReturnParameterIIArraySize = 3; sl@0: const TInt KIPCReturnParameterCreationMethod = 3; sl@0: sl@0: /** sl@0: Matching pointer access methods for WriteL sl@0: @internalComponent sl@0: */ sl@0: #define KIPCReturnParameterUidsPtr 0 sl@0: #define KIPCReturnParameterIIArrayPtr 3 sl@0: #define KIPCReturnParameterIIArraySizePtr 3 sl@0: #define KIPCReturnParameterCreationMethodPtr 3 sl@0: sl@0: #endif // __ECOMMESSAGEIDS_H__