mirror of
https://github.com/reactos/reactos.git
synced 2024-12-28 18:15:11 +00:00
Implement NdrCContextMarshall()
svn path=/trunk/; revision=21409
This commit is contained in:
parent
3fdda32084
commit
858feb20c2
1 changed files with 9 additions and 0 deletions
|
@ -3230,6 +3230,15 @@ static void WINAPI NdrBaseTypeFree(PMIDL_STUB_MESSAGE pStubMsg,
|
|||
/* nothing to do */
|
||||
}
|
||||
|
||||
/***********************************************************************
|
||||
* NDRCContextMarshall
|
||||
*/
|
||||
void WINAPI NDRCContextMarshall(IN NDR_CCONTEXT CContext, OUT void *pBuff )
|
||||
{
|
||||
CContextHandle *ctx = (CContextHandle*)CContext;
|
||||
memcpy(pBuff, ctx->Ndr, sizeof(ctx->Ndr));
|
||||
}
|
||||
|
||||
/***********************************************************************
|
||||
* NdrClientContextMarshall
|
||||
*/
|
||||
|
|
Loading…
Reference in a new issue