Author: tretiakov Date: Wed Mar 29 23:09:43 2006 New Revision: 21409
URL: http://svn.reactos.ru/svn/reactos?rev=21409&view=rev Log: Implement NdrCContextMarshall()
Modified: trunk/reactos/dll/win32/rpcrt4/ndr_marshall.c
Modified: trunk/reactos/dll/win32/rpcrt4/ndr_marshall.c URL: http://svn.reactos.ru/svn/reactos/trunk/reactos/dll/win32/rpcrt4/ndr_marshal... ============================================================================== --- trunk/reactos/dll/win32/rpcrt4/ndr_marshall.c (original) +++ trunk/reactos/dll/win32/rpcrt4/ndr_marshall.c Wed Mar 29 23:09:43 2006 @@ -3231,6 +3231,15 @@ }
/*********************************************************************** + * NDRCContextMarshall + */ +void WINAPI NDRCContextMarshall(IN NDR_CCONTEXT CContext, OUT void *pBuff ) +{ + CContextHandle *ctx = (CContextHandle*)CContext; + memcpy(pBuff, ctx->Ndr, sizeof(ctx->Ndr)); +} + +/*********************************************************************** * NdrClientContextMarshall */ void WINAPI NdrClientContextMarshall(PMIDL_STUB_MESSAGE pStubMsg,