rpcrt4: Add NdrServerCallAll stub.

Wine-Bug: https://bugs.winehq.org/show_bug.cgi?id=47131
Signed-off-by: Louis Lenders <xerox.xerox2000x@gmail.com>
Signed-off-by: Alexandre Julliard <julliard@winehq.org>
stable
Louis Lenders 2019-05-06 20:09:47 +02:00 committed by Alexandre Julliard
parent 8c61f824f9
commit e54224e88c
3 changed files with 11 additions and 0 deletions

View File

@ -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;

View File

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

View File

@ -676,6 +676,8 @@ RPCRTAPI void RPC_ENTRY
NdrServerCall2( PRPC_MESSAGE pRpcMsg );
RPCRTAPI void RPC_ENTRY
NdrServerCall( PRPC_MESSAGE pRpcMsg );
RPCRTAPI void RPC_ENTRY
NdrServerCallAll( PRPC_MESSAGE pRpcMsg );
RPCRTAPI void RPC_ENTRY
NdrAsyncServerCall( PRPC_MESSAGE pRpcMsg );