Commit e54224e8 authored by Louis Lenders's avatar Louis Lenders Committed by Alexandre Julliard

rpcrt4: Add NdrServerCallAll stub.

parent 8c61f824
......@@ -1557,6 +1557,14 @@ void WINAPI NdrServerCall( PRPC_MESSAGE msg )
NdrStubCall( NULL, NULL, msg, &phase );
}
/***********************************************************************
* NdrServerCallAll [RPCRT4.@]
*/
void WINAPI NdrServerCallAll( PRPC_MESSAGE msg )
{
FIXME("%p stub\n", msg);
}
struct async_call_data
{
MIDL_STUB_MESSAGE *pStubMsg;
......
......@@ -274,6 +274,7 @@
@ stdcall NdrSendReceive(ptr ptr)
@ stdcall NdrServerCall2(ptr)
@ stdcall NdrServerCall(ptr)
@ stdcall NdrServerCallAll(ptr)
@ stdcall NdrServerContextMarshall(ptr ptr long)
@ stdcall NdrServerContextNewMarshall(ptr ptr ptr ptr) # wxp
@ stdcall NdrServerContextNewUnmarshall(ptr ptr) # wxp
......
......@@ -677,6 +677,8 @@ RPCRTAPI void RPC_ENTRY
RPCRTAPI void RPC_ENTRY
NdrServerCall( PRPC_MESSAGE pRpcMsg );
RPCRTAPI void RPC_ENTRY
NdrServerCallAll( PRPC_MESSAGE pRpcMsg );
RPCRTAPI void RPC_ENTRY
NdrAsyncServerCall( PRPC_MESSAGE pRpcMsg );
RPCRTAPI LONG RPC_ENTRY
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment