Implement NdrClinentContextMarshall()

svn path=/trunk/; revision=21418
This commit is contained in:
Saveliy Tretiakov 2006-03-30 17:28:06 +00:00
parent ae889d6508
commit 151663dfeb

View file

@ -3246,7 +3246,14 @@ void WINAPI NdrClientContextMarshall(PMIDL_STUB_MESSAGE pStubMsg,
NDR_CCONTEXT ContextHandle,
int fCheck)
{
FIXME("(%p, %p, %d): stub\n", pStubMsg, ContextHandle, fCheck);
if(!ContextHandle)
RpcRaiseException(ERROR_INVALID_HANDLE);
NDRCContextMarshall(ContextHandle, pStubMsg->Buffer);
pStubMsg->Buffer += 20;
}
/***********************************************************************