rpcrt4: add a stub for RpcSsDontSerializeContext

Austin English austinenglish at gmail.com
Mon Jul 7 21:54:21 CDT 2014


For https://bugs.winehq.org/show_bug.cgi?id=30258

-- 
-Austin
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://www.winehq.org/pipermail/wine-patches/attachments/20140707/05f3588a/attachment.html>
-------------- next part --------------
diff --git a/dlls/rpcrt4/ndr_contexthandle.c b/dlls/rpcrt4/ndr_contexthandle.c
index cab0fc5..43e0ce7 100644
--- a/dlls/rpcrt4/ndr_contexthandle.c
+++ b/dlls/rpcrt4/ndr_contexthandle.c
@@ -157,6 +157,14 @@ void WINAPI RpcSsDestroyClientContext(void **ContextHandle)
         RpcRaiseException(status);
 }
 
+/***********************************************************************
+ *           RpcSsDontSerializeContext [RPCRT4.@]
+ */
+ void WINAPI RpcSsDontSerializeContext(void)
+{
+    FIXME("stub\n");
+}
+
 static UINT ndr_update_context_handle(NDR_CCONTEXT *CContext,
                                       RPC_BINDING_HANDLE hBinding,
                                       const ndr_context_handle *chi)
diff --git a/dlls/rpcrt4/rpcrt4.spec b/dlls/rpcrt4/rpcrt4.spec
index 33c1af5..00fe7c4 100644
--- a/dlls/rpcrt4/rpcrt4.spec
+++ b/dlls/rpcrt4/rpcrt4.spec
@@ -471,7 +471,7 @@
 @ stub RpcSsContextLockShared # wxp
 @ stdcall RpcSsDestroyClientContext(ptr)
 @ stub RpcSsDisableAllocate
-@ stub RpcSsDontSerializeContext
+@ stdcall RpcSsDontSerializeContext()
 @ stub RpcSsEnableAllocate
 @ stub RpcSsFree
 @ stub RpcSsGetContextBinding


More information about the wine-patches mailing list