diff -r 5d03bc08d59c -r 01a6848ebfd7 windowing/windowserver/nonnga/CLIENT/MWSCLI.CPP --- a/windowing/windowserver/nonnga/CLIENT/MWSCLI.CPP Tue Feb 02 01:47:50 2010 +0200 +++ b/windowing/windowserver/nonnga/CLIENT/MWSCLI.CPP Fri Apr 16 16:21:04 2010 +0300 @@ -28,12 +28,12 @@ { } -void MWsClientClass::Write(const TAny *aData1, TInt aLength1,const TAny *aData2, TInt aLength2,TUint aOpcode) const +void MWsClientClass::Write(const TAny *aData1, TInt aLength1,const TAny *aData2, TInt aLength2,TUint aOpcode,const TIpcArgs* /*aIpcArgs=NULL*/) const { iBuffer->Write(iWsHandle,aOpcode,aData1,aLength1,aData2,aLength2); } -void MWsClientClass::Write(const TAny *aData1, TInt aLength1,TUint aOpcode) const +void MWsClientClass::Write(const TAny *aData1, TInt aLength1,TUint aOpcode,const TIpcArgs* /*aIpcArgs=NULL*/) const { iBuffer->Write(iWsHandle,aOpcode,aData1,aLength1); } @@ -63,6 +63,10 @@ Write(&aSize,sizeof(aSize),aOpcode); } +void MWsClientClass::AppendData(const TAny */*aData*/,TInt /*aLength*/,TBool /*aFinished*/) + { + } + TInt MWsClientClass::WriteReply(TUint aOpcode,const TIpcArgs* aIpcArgs) const { return(iBuffer->WriteReply(iWsHandle,aOpcode,aIpcArgs));