mirror of
https://github.com/reactos/reactos.git
synced 2024-12-28 18:15:11 +00:00
Implement NdrClinentContextMarshall()
svn path=/trunk/; revision=21418
This commit is contained in:
parent
ae889d6508
commit
151663dfeb
1 changed files with 8 additions and 1 deletions
|
@ -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;
|
||||
|
||||
}
|
||||
|
||||
/***********************************************************************
|
||||
|
|
Loading…
Reference in a new issue