Update contrib.
1 // Copyright (c) 1996-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 // Common client side class
19 #include "../SERVER/w32cmd.h"
23 MWsClientClass::MWsClientClass() : iWsHandle(0), iBuffer(NULL)
27 MWsClientClass::MWsClientClass(RWsBuffer *aBuffer) : iWsHandle(0), iBuffer(aBuffer)
31 void MWsClientClass::Write(const TAny *aData1, TInt aLength1,const TAny *aData2, TInt aLength2,TUint aOpcode,const TIpcArgs* /*aIpcArgs=NULL*/) const
33 iBuffer->Write(iWsHandle,aOpcode,aData1,aLength1,aData2,aLength2);
36 void MWsClientClass::Write(const TAny *aData1, TInt aLength1,TUint aOpcode,const TIpcArgs* /*aIpcArgs=NULL*/) const
38 iBuffer->Write(iWsHandle,aOpcode,aData1,aLength1);
41 void MWsClientClass::Write(TUint aOpcode) const
43 iBuffer->Write(iWsHandle,aOpcode);
46 void MWsClientClass::WriteInt(TInt aInt, TUint aOpcode) const
48 iBuffer->Write(iWsHandle,aOpcode,&aInt,sizeof(TInt));
51 void MWsClientClass::WriteRect(const TRect &aRect, TUint aOpcode) const
53 Write(&aRect,sizeof(aRect),aOpcode);
56 void MWsClientClass::WritePoint(const TPoint &aPoint, TUint aOpcode) const
58 Write(&aPoint,sizeof(aPoint),aOpcode);
61 void MWsClientClass::WriteSize(const TSize &aSize, TUint aOpcode) const
63 Write(&aSize,sizeof(aSize),aOpcode);
66 void MWsClientClass::AppendData(const TAny */*aData*/,TInt /*aLength*/,TBool /*aFinished*/)
70 TInt MWsClientClass::WriteReply(TUint aOpcode,const TIpcArgs* aIpcArgs) const
72 return(iBuffer->WriteReply(iWsHandle,aOpcode,aIpcArgs));
75 TInt MWsClientClass::WriteReplyInt(TInt aInt, TUint aOpcode,const TIpcArgs* aIpcArgs) const
77 return(iBuffer->WriteReply(iWsHandle,aOpcode,&aInt,sizeof(TInt),aIpcArgs));
80 TInt MWsClientClass::WriteReply(const TAny *aData1, TInt aLength1,TUint aOpcode,const TIpcArgs* aIpcArgs) const
82 return(iBuffer->WriteReply(iWsHandle,aOpcode,aData1,aLength1,aIpcArgs));
85 TInt MWsClientClass::WriteReply(const TAny *aData1, TInt aLength1,const TAny *aData2, TInt aLength2,TUint aOpcode,const TIpcArgs* aIpcArgs) const
87 return(iBuffer->WriteReply(iWsHandle,aOpcode,aData1,aLength1,aData2,aLength2,aIpcArgs));
90 TInt MWsClientClass::WriteReplyP(const TWriteDescriptorType& aReplyPackage,TUint aOpcode) const
92 return(iBuffer->WriteReplyP(iWsHandle,aOpcode,aReplyPackage));
95 TInt MWsClientClass::WriteReplyIntP(TInt aInt, const TWriteDescriptorType& aReplyPackage,TUint aOpcode) const
97 return(iBuffer->WriteReplyP(iWsHandle,aOpcode,&aInt,sizeof(aInt),aReplyPackage));
100 TInt MWsClientClass::WriteReplyP(const TAny *aData1, TInt aLength1, const TWriteDescriptorType& aReplyPackage,TUint aOpcode) const
102 return(iBuffer->WriteReplyP(iWsHandle,aOpcode,aData1,aLength1,aReplyPackage));
105 TInt MWsClientClass::WriteReplyP(const TAny *aData1, TInt aLength1,const TAny *aData2, TInt aLength2, const TWriteDescriptorType& aReplyPackage,TUint aOpcode) const
107 return(iBuffer->WriteReplyP(iWsHandle,aOpcode,aData1,aLength1,aData2,aLength2,aReplyPackage));
110 TInt MWsClientClass::WriteReplyByProvidingRemoteReadAccess(const TAny* aBuf, TInt aBufLen,const TReadDescriptorType& aRemoteReadBuffer, TUint aOpcode) const
112 return(iBuffer->WriteReplyByProvidingRemoteReadAccess(iWsHandle,aOpcode,aBuf,aBufLen,aRemoteReadBuffer));
115 void MWsClientClass::AddToBitmapArray(const TInt aBitmapHandle)const
117 iBuffer->AddToBitmapArray(aBitmapHandle);