Fix NdrServerContextMarshall prototype.
This commit is contained in:
parent
ee934ffadd
commit
94dc00c558
|
@ -2684,9 +2684,9 @@ void WINAPI NdrClientContextUnmarshall(PMIDL_STUB_MESSAGE pStubMsg,
|
||||||
|
|
||||||
void WINAPI NdrServerContextMarshall(PMIDL_STUB_MESSAGE pStubMsg,
|
void WINAPI NdrServerContextMarshall(PMIDL_STUB_MESSAGE pStubMsg,
|
||||||
NDR_SCONTEXT ContextHandle,
|
NDR_SCONTEXT ContextHandle,
|
||||||
int fCheck )
|
NDR_RUNDOWN RundownRoutine )
|
||||||
{
|
{
|
||||||
FIXME("(%p, %p, %d): stub\n", pStubMsg, ContextHandle, fCheck);
|
FIXME("(%p, %p, %p): stub\n", pStubMsg, ContextHandle, RundownRoutine);
|
||||||
}
|
}
|
||||||
|
|
||||||
NDR_SCONTEXT WINAPI NdrServerContextUnmarshall(PMIDL_STUB_MESSAGE pStubMsg)
|
NDR_SCONTEXT WINAPI NdrServerContextUnmarshall(PMIDL_STUB_MESSAGE pStubMsg)
|
||||||
|
|
|
@ -448,7 +448,7 @@ RPCRTAPI void RPC_ENTRY
|
||||||
IN RPC_BINDING_HANDLE BindHandle );
|
IN RPC_BINDING_HANDLE BindHandle );
|
||||||
|
|
||||||
RPCRTAPI void RPC_ENTRY
|
RPCRTAPI void RPC_ENTRY
|
||||||
NdrServerContextMarshall ( PMIDL_STUB_MESSAGE pStubMsg, NDR_SCONTEXT ContextHandle, int fCheck );
|
NdrServerContextMarshall ( PMIDL_STUB_MESSAGE pStubMsg, NDR_SCONTEXT ContextHandle, NDR_RUNDOWN RundownRoutine );
|
||||||
|
|
||||||
RPCRTAPI NDR_SCONTEXT RPC_ENTRY
|
RPCRTAPI NDR_SCONTEXT RPC_ENTRY
|
||||||
NdrServerContextUnmarshall( IN PMIDL_STUB_MESSAGE pStubMsg );
|
NdrServerContextUnmarshall( IN PMIDL_STUB_MESSAGE pStubMsg );
|
||||||
|
|
Loading…
Reference in New Issue