Louis Lenders : rpcrt4: Add NdrServerCallAll stub.

Alexandre Julliard julliard at winehq.org
Tue May 7 17:32:46 CDT 2019


Module: wine
Branch: master
Commit: e54224e88c9514b7a1293d2f5b9471effbb3358f
URL:    https://source.winehq.org/git/wine.git/?a=commit;h=e54224e88c9514b7a1293d2f5b9471effbb3358f

Author: Louis Lenders <xerox.xerox2000x at gmail.com>
Date:   Mon May  6 20:09:47 2019 +0200

rpcrt4: Add NdrServerCallAll stub.

Wine-Bug: https://bugs.winehq.org/show_bug.cgi?id=47131
Signed-off-by: Louis Lenders <xerox.xerox2000x at gmail.com>
Signed-off-by: Alexandre Julliard <julliard at winehq.org>

---

 dlls/rpcrt4/ndr_stubless.c | 8 ++++++++
 dlls/rpcrt4/rpcrt4.spec    | 1 +
 include/rpcndr.h           | 2 ++
 3 files changed, 11 insertions(+)

diff --git a/dlls/rpcrt4/ndr_stubless.c b/dlls/rpcrt4/ndr_stubless.c
index 813d7e8..530bd9e 100644
--- a/dlls/rpcrt4/ndr_stubless.c
+++ b/dlls/rpcrt4/ndr_stubless.c
@@ -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;
diff --git a/dlls/rpcrt4/rpcrt4.spec b/dlls/rpcrt4/rpcrt4.spec
index 79c9645..d8e873d 100644
--- a/dlls/rpcrt4/rpcrt4.spec
+++ b/dlls/rpcrt4/rpcrt4.spec
@@ -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
diff --git a/include/rpcndr.h b/include/rpcndr.h
index 077e02a..ac9da11 100644
--- a/include/rpcndr.h
+++ b/include/rpcndr.h
@@ -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




More information about the wine-cvs mailing list