First public contribution.
1 // Copyright (c) 1997-2009 Nokia Corporation and/or its subsidiary(-ies).
2 // All rights reserved.
3 // This component and the accompanying materials are made available
4 // under the terms of "Eclipse Public License v1.0"
5 // which accompanies this distribution, and is available
6 // at the URL "http://www.eclipse.org/legal/epl-v10.html".
8 // Initial Contributors:
9 // Nokia Corporation - initial contribution.
14 // Define the enumeration for the service op codes
18 #ifndef __ECOMMESSAGEIDS_H__
19 #define __ECOMMESSAGEIDS_H__
24 A Struct class used to encapsulate the parameters
25 required during ListImplementations
33 TBool iCapabilityCheck;
37 ECom Framework service request codes
40 enum TEComServiceMessages
43 ECancelNotifyOnChange,
45 EListResolvedImplementations,
46 EListCustomResolvedImplementations,
47 ECollectImplementationsList,
48 EGetImplementationCreationMethod,
49 EGetResolvedCreationMethod,
50 EGetCustomResolvedCreationMethod,
51 //EDestroyedImplementation obsolete due to implementation
52 //creation relocation to client side from server
53 EDestroyedImplementation,
54 EEnableImplementation,
55 EDisableImplementation,
57 EListExtendedInterfaces,
58 //This is a generic message intended for testing purposes, should be the last one.
64 Constants for UidType locations for service message UID parameters
67 const TInt KInterfaceUidIndex = 0;
68 const TInt KDtorKeyUidIndex = 1;
69 const TInt KResolverUidIndex = 2;
73 Message slot constants for
74 IPC parameter passing consistency
75 Note : the slot range is 0-3
78 const TInt KIPCParameterMessageDes = 0;
79 const TInt KIPCParameterUids = 0;
80 const TInt KIPCParameterDesLength = 1;
81 const TInt KIPCParameterResolverParams = 1;
82 const TInt KIPCParameterResolverParamsType = 2;
83 const TInt KIPCParameterMatchStrExtInf = 1;
86 Message slot constants for List Interfaces parameter passing
89 const TInt KIPCParameterInterfaceParam = 0;
90 const TInt KIPCParameterImplementationUid = 0;
91 const TInt KIPCParameterBufferSize = 1;
92 const TInt KIPCParameterInterfaceData = 2;
95 Matching pointer access methods for ReadL
98 #define KIPCParameterMessageDesPtr aMessage.Ptr0()
99 #define KIPCParameterUidsPtr aMessage.Ptr0()
100 #define KIPCParameterResolverParamsPtr aMessage.Ptr1()
101 #define KIPCParameterResolverParamsTypePtr aMessage.Int2()
106 const TInt KIPCReturnParameterUids = 0;
107 const TInt KIPCReturnParameterIIArray = 3;
108 const TInt KIPCReturnParameterIIArraySize = 3;
109 const TInt KIPCReturnParameterCreationMethod = 3;
112 Matching pointer access methods for WriteL
115 #define KIPCReturnParameterUidsPtr 0
116 #define KIPCReturnParameterIIArrayPtr 3
117 #define KIPCReturnParameterIIArraySizePtr 3
118 #define KIPCReturnParameterCreationMethodPtr 3
120 #endif // __ECOMMESSAGEIDS_H__