From bdc5a341964e636fc492fc95479255ff186a6481 Mon Sep 17 00:00:00 2001
From: Rob Shearman <rob@codeweavers.com>
Date: Mon, 17 Dec 2007 18:20:41 +0000
Subject: [PATCH] rpcrt4: Add a stub for I_RpcGetCurrentCallHandle.

---
 dlls/rpcrt4/rpc_server.c | 9 +++++++++
 dlls/rpcrt4/rpcrt4.spec  | 2 +-
 2 files changed, 10 insertions(+), 1 deletion(-)

diff --git a/dlls/rpcrt4/rpc_server.c b/dlls/rpcrt4/rpc_server.c
index 098669c9911..a337df2f615 100644
--- a/dlls/rpcrt4/rpc_server.c
+++ b/dlls/rpcrt4/rpc_server.c
@@ -1121,3 +1121,12 @@ RPC_STATUS WINAPI RpcMgmtSetServerStackSize(ULONG ThreadStackSize)
   FIXME("(0x%x): stub\n", ThreadStackSize);
   return RPC_S_OK;
 }
+
+/***********************************************************************
+ *             I_RpcGetCurrentCallHandle (RPCRT4.@)
+ */
+RPC_BINDING_HANDLE WINAPI I_RpcGetCurrentCallHandle(void)
+{
+    FIXME("\n");
+    return NULL;
+}
diff --git a/dlls/rpcrt4/rpcrt4.spec b/dlls/rpcrt4/rpcrt4.spec
index 9005a4faf56..93f6d318e46 100644
--- a/dlls/rpcrt4/rpcrt4.spec
+++ b/dlls/rpcrt4/rpcrt4.spec
@@ -51,7 +51,7 @@
 @ stub I_RpcGetAssociationContext
 @ stdcall I_RpcGetBuffer(ptr)
 @ stub I_RpcGetBufferWithObject
-@ stub I_RpcGetCurrentCallHandle
+@ stdcall I_RpcGetCurrentCallHandle()
 @ stub I_RpcGetExtendedError
 @ stub I_RpcGetServerContextList
 @ stub I_RpcGetThreadEvent # win9x
-- 
GitLab