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>
This commit is contained in:
parent
8c61f824f9
commit
e54224e88c
|
@ -1557,6 +1557,14 @@ void WINAPI NdrServerCall( PRPC_MESSAGE msg )
|
||||||
NdrStubCall( NULL, NULL, msg, &phase );
|
NdrStubCall( NULL, NULL, msg, &phase );
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/***********************************************************************
|
||||||
|
* NdrServerCallAll [RPCRT4.@]
|
||||||
|
*/
|
||||||
|
void WINAPI NdrServerCallAll( PRPC_MESSAGE msg )
|
||||||
|
{
|
||||||
|
FIXME("%p stub\n", msg);
|
||||||
|
}
|
||||||
|
|
||||||
struct async_call_data
|
struct async_call_data
|
||||||
{
|
{
|
||||||
MIDL_STUB_MESSAGE *pStubMsg;
|
MIDL_STUB_MESSAGE *pStubMsg;
|
||||||
|
|
|
@ -274,6 +274,7 @@
|
||||||
@ stdcall NdrSendReceive(ptr ptr)
|
@ stdcall NdrSendReceive(ptr ptr)
|
||||||
@ stdcall NdrServerCall2(ptr)
|
@ stdcall NdrServerCall2(ptr)
|
||||||
@ stdcall NdrServerCall(ptr)
|
@ stdcall NdrServerCall(ptr)
|
||||||
|
@ stdcall NdrServerCallAll(ptr)
|
||||||
@ stdcall NdrServerContextMarshall(ptr ptr long)
|
@ stdcall NdrServerContextMarshall(ptr ptr long)
|
||||||
@ stdcall NdrServerContextNewMarshall(ptr ptr ptr ptr) # wxp
|
@ stdcall NdrServerContextNewMarshall(ptr ptr ptr ptr) # wxp
|
||||||
@ stdcall NdrServerContextNewUnmarshall(ptr ptr) # wxp
|
@ stdcall NdrServerContextNewUnmarshall(ptr ptr) # wxp
|
||||||
|
|
|
@ -676,6 +676,8 @@ RPCRTAPI void RPC_ENTRY
|
||||||
NdrServerCall2( PRPC_MESSAGE pRpcMsg );
|
NdrServerCall2( PRPC_MESSAGE pRpcMsg );
|
||||||
RPCRTAPI void RPC_ENTRY
|
RPCRTAPI void RPC_ENTRY
|
||||||
NdrServerCall( PRPC_MESSAGE pRpcMsg );
|
NdrServerCall( PRPC_MESSAGE pRpcMsg );
|
||||||
|
RPCRTAPI void RPC_ENTRY
|
||||||
|
NdrServerCallAll( PRPC_MESSAGE pRpcMsg );
|
||||||
RPCRTAPI void RPC_ENTRY
|
RPCRTAPI void RPC_ENTRY
|
||||||
NdrAsyncServerCall( PRPC_MESSAGE pRpcMsg );
|
NdrAsyncServerCall( PRPC_MESSAGE pRpcMsg );
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue