Rob Shearman : rpcrt4: Add a stub for I_RpcGetCurrentCallHandle.

Alexandre Julliard julliard at winehq.org
Tue Dec 18 07:34:43 CST 2007


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

Author: Rob Shearman <rob at codeweavers.com>
Date:   Mon Dec 17 18:20:41 2007 +0000

rpcrt4: Add a stub for I_RpcGetCurrentCallHandle.

---

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

diff --git a/dlls/rpcrt4/rpc_server.c b/dlls/rpcrt4/rpc_server.c
index 098669c..a337df2 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 9005a4f..93f6d31 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




More information about the wine-cvs mailing list