Implement NdrCContextMarshall()

svn path=/trunk/; revision=21409
This commit is contained in:
Saveliy Tretiakov 2006-03-29 19:09:43 +00:00
parent 3fdda32084
commit 858feb20c2

View file

@ -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
*/