Mike McCormack : rpcrt4: Add stub implementations for NDRCContext(Un) Marshall.

Alexandre Julliard julliard at wine.codeweavers.com
Wed May 24 07:49:08 CDT 2006


Module: wine
Branch: refs/heads/master
Commit: 4def9cc022aca5d5498af33c18b2f8458836b507
URL:    http://source.winehq.org/git/?p=wine.git;a=commit;h=4def9cc022aca5d5498af33c18b2f8458836b507

Author: Mike McCormack <mike at codeweavers.com>
Date:   Wed May 24 19:28:46 2006 +0900

rpcrt4: Add stub implementations for NDRCContext(Un)Marshall.

---

 dlls/rpcrt4/ndr_marshall.c |   13 +++++++++++++
 dlls/rpcrt4/rpcrt4.spec    |    4 ++--
 2 files changed, 15 insertions(+), 2 deletions(-)

diff --git a/dlls/rpcrt4/ndr_marshall.c b/dlls/rpcrt4/ndr_marshall.c
index 113f0bf..f6888c8 100644
--- a/dlls/rpcrt4/ndr_marshall.c
+++ b/dlls/rpcrt4/ndr_marshall.c
@@ -4344,3 +4344,16 @@ RPC_BINDING_HANDLE WINAPI NDRCContextBin
     FIXME("(%p): stub\n", CContext);
     return NULL;
 }
+
+void WINAPI NDRCContextMarshall(NDR_CCONTEXT CContext, void *pBuff)
+{
+    FIXME("(%p %p): stub\n", CContext, pBuff);
+}
+
+void WINAPI NDRCContextUnmarshall(NDR_CCONTEXT *CContext,
+                                  RPC_BINDING_HANDLE hBinding,
+                                  void *pBuff,
+                                  unsigned long DataRepresentation)
+{
+    FIXME("(%p %p %p %08lx): stub\n", CContext, hBinding, pBuff, DataRepresentation);
+}
diff --git a/dlls/rpcrt4/rpcrt4.spec b/dlls/rpcrt4/rpcrt4.spec
index 5d35096..5099c9e 100644
--- a/dlls/rpcrt4/rpcrt4.spec
+++ b/dlls/rpcrt4/rpcrt4.spec
@@ -138,8 +138,8 @@ # 9x version of I_RpcBindingSetAsync has
 @ stub MqGetContext # win9x
 @ stub MqRegisterQueue # win9x
 @ stdcall NDRCContextBinding(ptr)
-@ stub NDRCContextMarshall
-@ stub NDRCContextUnmarshall
+@ stdcall NDRCContextMarshall(ptr ptr)
+@ stdcall NDRCContextUnmarshall(ptr ptr ptr long)
 @ stub NDRSContextMarshall2
 @ stub NDRSContextMarshall
 @ stub NDRSContextMarshallEx




More information about the wine-cvs mailing list