sl@0: // Copyright (c) 1996-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: // Common client side class sl@0: // sl@0: // sl@0: sl@0: #include sl@0: #include "../SERVER/w32cmd.h" sl@0: #include "CLIENT.H" sl@0: sl@0: sl@0: MWsClientClass::MWsClientClass() : iWsHandle(0), iBuffer(NULL) sl@0: { sl@0: } sl@0: sl@0: MWsClientClass::MWsClientClass(RWsBuffer *aBuffer) : iWsHandle(0), iBuffer(aBuffer) sl@0: { sl@0: } sl@0: sl@0: void MWsClientClass::Write(const TAny *aData1, TInt aLength1,const TAny *aData2, TInt aLength2,TUint aOpcode,const TIpcArgs* /*aIpcArgs=NULL*/) const sl@0: { sl@0: iBuffer->Write(iWsHandle,aOpcode,aData1,aLength1,aData2,aLength2); sl@0: } sl@0: sl@0: void MWsClientClass::Write(const TAny *aData1, TInt aLength1,TUint aOpcode,const TIpcArgs* /*aIpcArgs=NULL*/) const sl@0: { sl@0: iBuffer->Write(iWsHandle,aOpcode,aData1,aLength1); sl@0: } sl@0: sl@0: void MWsClientClass::Write(TUint aOpcode) const sl@0: { sl@0: iBuffer->Write(iWsHandle,aOpcode); sl@0: } sl@0: sl@0: void MWsClientClass::WriteInt(TInt aInt, TUint aOpcode) const sl@0: { sl@0: iBuffer->Write(iWsHandle,aOpcode,&aInt,sizeof(TInt)); sl@0: } sl@0: sl@0: void MWsClientClass::WriteRect(const TRect &aRect, TUint aOpcode) const sl@0: { sl@0: Write(&aRect,sizeof(aRect),aOpcode); sl@0: } sl@0: sl@0: void MWsClientClass::WritePoint(const TPoint &aPoint, TUint aOpcode) const sl@0: { sl@0: Write(&aPoint,sizeof(aPoint),aOpcode); sl@0: } sl@0: sl@0: void MWsClientClass::WriteSize(const TSize &aSize, TUint aOpcode) const sl@0: { sl@0: Write(&aSize,sizeof(aSize),aOpcode); sl@0: } sl@0: sl@0: void MWsClientClass::AppendData(const TAny */*aData*/,TInt /*aLength*/,TBool /*aFinished*/) sl@0: { sl@0: } sl@0: sl@0: TInt MWsClientClass::WriteReply(TUint aOpcode,const TIpcArgs* aIpcArgs) const sl@0: { sl@0: return(iBuffer->WriteReply(iWsHandle,aOpcode,aIpcArgs)); sl@0: } sl@0: sl@0: TInt MWsClientClass::WriteReplyInt(TInt aInt, TUint aOpcode,const TIpcArgs* aIpcArgs) const sl@0: { sl@0: return(iBuffer->WriteReply(iWsHandle,aOpcode,&aInt,sizeof(TInt),aIpcArgs)); sl@0: } sl@0: sl@0: TInt MWsClientClass::WriteReply(const TAny *aData1, TInt aLength1,TUint aOpcode,const TIpcArgs* aIpcArgs) const sl@0: { sl@0: return(iBuffer->WriteReply(iWsHandle,aOpcode,aData1,aLength1,aIpcArgs)); sl@0: } sl@0: sl@0: TInt MWsClientClass::WriteReply(const TAny *aData1, TInt aLength1,const TAny *aData2, TInt aLength2,TUint aOpcode,const TIpcArgs* aIpcArgs) const sl@0: { sl@0: return(iBuffer->WriteReply(iWsHandle,aOpcode,aData1,aLength1,aData2,aLength2,aIpcArgs)); sl@0: } sl@0: sl@0: TInt MWsClientClass::WriteReplyP(const TWriteDescriptorType& aReplyPackage,TUint aOpcode) const sl@0: { sl@0: return(iBuffer->WriteReplyP(iWsHandle,aOpcode,aReplyPackage)); sl@0: } sl@0: sl@0: TInt MWsClientClass::WriteReplyIntP(TInt aInt, const TWriteDescriptorType& aReplyPackage,TUint aOpcode) const sl@0: { sl@0: return(iBuffer->WriteReplyP(iWsHandle,aOpcode,&aInt,sizeof(aInt),aReplyPackage)); sl@0: } sl@0: sl@0: TInt MWsClientClass::WriteReplyP(const TAny *aData1, TInt aLength1, const TWriteDescriptorType& aReplyPackage,TUint aOpcode) const sl@0: { sl@0: return(iBuffer->WriteReplyP(iWsHandle,aOpcode,aData1,aLength1,aReplyPackage)); sl@0: } sl@0: sl@0: TInt MWsClientClass::WriteReplyP(const TAny *aData1, TInt aLength1,const TAny *aData2, TInt aLength2, const TWriteDescriptorType& aReplyPackage,TUint aOpcode) const sl@0: { sl@0: return(iBuffer->WriteReplyP(iWsHandle,aOpcode,aData1,aLength1,aData2,aLength2,aReplyPackage)); sl@0: } sl@0: sl@0: TInt MWsClientClass::WriteReplyByProvidingRemoteReadAccess(const TAny* aBuf, TInt aBufLen,const TReadDescriptorType& aRemoteReadBuffer, TUint aOpcode) const sl@0: { sl@0: return(iBuffer->WriteReplyByProvidingRemoteReadAccess(iWsHandle,aOpcode,aBuf,aBufLen,aRemoteReadBuffer)); sl@0: } sl@0: sl@0: void MWsClientClass::AddToBitmapArray(const TInt aBitmapHandle)const sl@0: { sl@0: iBuffer->AddToBitmapArray(aBitmapHandle); sl@0: } sl@0: sl@0: