os/ossrv/lowlevellibsandfws/pluginfw/Framework/frame/EComMessageIds.h
changeset 0 bde4ae8d615e
     1.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     1.2 +++ b/os/ossrv/lowlevellibsandfws/pluginfw/Framework/frame/EComMessageIds.h	Fri Jun 15 03:10:57 2012 +0200
     1.3 @@ -0,0 +1,120 @@
     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 +// Define the enumeration for the service op codes
    1.18 +// 
    1.19 +//
    1.20 +
    1.21 +#ifndef __ECOMMESSAGEIDS_H__
    1.22 +#define __ECOMMESSAGEIDS_H__
    1.23 +
    1.24 +#include <e32base.h>
    1.25 +
    1.26 +/**
    1.27 +A Struct class used to encapsulate the parameters
    1.28 +required during ListImplementations
    1.29 +@internalComponent
    1.30 +*/
    1.31 +class TListImplParam
    1.32 +	{
    1.33 +public:
    1.34 +	TInt iMatchType;
    1.35 +	TInt iBufferSize;
    1.36 +	TBool iCapabilityCheck;
    1.37 +	};
    1.38 +
    1.39 +/**
    1.40 +ECom Framework service request codes
    1.41 +@internalComponent
    1.42 +*/
    1.43 +enum TEComServiceMessages
    1.44 +	{
    1.45 +	ENotifyOnChange,
    1.46 +	ECancelNotifyOnChange,
    1.47 +	EListImplementations,
    1.48 +	EListResolvedImplementations,
    1.49 +	EListCustomResolvedImplementations,
    1.50 +	ECollectImplementationsList,
    1.51 +	EGetImplementationCreationMethod,
    1.52 +	EGetResolvedCreationMethod,
    1.53 +	EGetCustomResolvedCreationMethod,
    1.54 +	//EDestroyedImplementation obsolete due to implementation
    1.55 +	//creation relocation to client side from server
    1.56 +	EDestroyedImplementation,
    1.57 +	EEnableImplementation,
    1.58 +	EDisableImplementation,
    1.59 +	// List interfaces
    1.60 +	EListExtendedInterfaces,
    1.61 +	//This is a generic message intended for testing purposes, should be the last one.
    1.62 +	ESetGetParameters
    1.63 +	};
    1.64 +
    1.65 +
    1.66 +/**
    1.67 +Constants for UidType locations for service message UID parameters
    1.68 +@internalComponent
    1.69 +*/
    1.70 +const TInt KInterfaceUidIndex	= 0;
    1.71 +const TInt KDtorKeyUidIndex		= 1;
    1.72 +const TInt KResolverUidIndex	= 2;
    1.73 +
    1.74 +
    1.75 +/**
    1.76 +Message slot constants for
    1.77 +IPC parameter passing consistency
    1.78 +Note : the slot range is 0-3
    1.79 +@internalComponent
    1.80 +*/
    1.81 +const TInt KIPCParameterMessageDes				= 0;
    1.82 +const TInt KIPCParameterUids					= 0;
    1.83 +const TInt KIPCParameterDesLength				= 1;
    1.84 +const TInt KIPCParameterResolverParams			= 1;
    1.85 +const TInt KIPCParameterResolverParamsType		= 2;
    1.86 +const TInt KIPCParameterMatchStrExtInf			= 1;
    1.87 +
    1.88 +/**
    1.89 +Message slot constants for List Interfaces parameter passing
    1.90 +@internalComponent
    1.91 +*/
    1.92 +const TInt KIPCParameterInterfaceParam			= 0;
    1.93 +const TInt KIPCParameterImplementationUid		= 0;
    1.94 +const TInt KIPCParameterBufferSize				= 1;
    1.95 +const TInt KIPCParameterInterfaceData			= 2;
    1.96 +
    1.97 +/**
    1.98 +Matching pointer access methods for ReadL
    1.99 +@internalComponent
   1.100 +*/
   1.101 +#define KIPCParameterMessageDesPtr				aMessage.Ptr0()
   1.102 +#define KIPCParameterUidsPtr					aMessage.Ptr0()
   1.103 +#define KIPCParameterResolverParamsPtr			aMessage.Ptr1()
   1.104 +#define KIPCParameterResolverParamsTypePtr		aMessage.Int2()
   1.105 +
   1.106 +/**
   1.107 +@internalComponent
   1.108 +*/
   1.109 +const TInt KIPCReturnParameterUids				= 0;
   1.110 +const TInt KIPCReturnParameterIIArray			= 3;
   1.111 +const TInt KIPCReturnParameterIIArraySize		= 3;
   1.112 +const TInt KIPCReturnParameterCreationMethod	= 3;
   1.113 +
   1.114 +/**
   1.115 +Matching pointer access methods for WriteL
   1.116 +@internalComponent
   1.117 +*/
   1.118 +#define KIPCReturnParameterUidsPtr				0
   1.119 +#define KIPCReturnParameterIIArrayPtr			3
   1.120 +#define KIPCReturnParameterIIArraySizePtr		3
   1.121 +#define KIPCReturnParameterCreationMethodPtr	3
   1.122 +
   1.123 +#endif	// __ECOMMESSAGEIDS_H__