Rob Shearman : rpcrt4: Add stubs for RpcMgmtSetCancelTimeout and RpcCancelThread.

Alexandre Julliard julliard at winehq.org
Wed Nov 7 06:45:52 CST 2007


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

Author: Rob Shearman <rob at codeweavers.com>
Date:   Tue Nov  6 15:55:06 2007 +0000

rpcrt4: Add stubs for RpcMgmtSetCancelTimeout and RpcCancelThread.

---

 dlls/rpcrt4/rpcrt4.spec   |    4 ++--
 dlls/rpcrt4/rpcrt4_main.c |   18 ++++++++++++++++++
 2 files changed, 20 insertions(+), 2 deletions(-)

diff --git a/dlls/rpcrt4/rpcrt4.spec b/dlls/rpcrt4/rpcrt4.spec
index 8accabc..631d135 100644
--- a/dlls/rpcrt4/rpcrt4.spec
+++ b/dlls/rpcrt4/rpcrt4.spec
@@ -395,7 +395,7 @@
 @ stdcall RpcBindingToStringBindingW(ptr ptr)
 @ stdcall RpcBindingVectorFree(ptr)
 @ stub RpcCancelAsyncCall
-@ stub RpcCancelThread
+@ stdcall RpcCancelThread(ptr)
 @ stub RpcCancelThreadEx
 @ stub RpcCertGeneratePrincipalNameA
 @ stub RpcCertGeneratePrincipalNameW
@@ -438,7 +438,7 @@
 @ stub RpcMgmtInqStats
 @ stdcall RpcMgmtIsServerListening(ptr)
 @ stub RpcMgmtSetAuthorizationFn
-@ stub RpcMgmtSetCancelTimeout
+@ stdcall RpcMgmtSetCancelTimeout(long)
 @ stdcall RpcMgmtSetComTimeout(ptr long)
 @ stub RpcMgmtSetParameter # win9x
 @ stdcall RpcMgmtSetServerStackSize(long)
diff --git a/dlls/rpcrt4/rpcrt4_main.c b/dlls/rpcrt4/rpcrt4_main.c
index a7c3c21..e067d0e 100644
--- a/dlls/rpcrt4/rpcrt4_main.c
+++ b/dlls/rpcrt4/rpcrt4_main.c
@@ -837,3 +837,21 @@ RPC_STATUS RPC_ENTRY RpcErrorStartEnumeration(void** EnumHandle)
     FIXME("(%p): stub\n", EnumHandle);
     return RPC_S_ENTRY_NOT_FOUND;
 }
+
+/******************************************************************************
+ * RpcMgmtSetCancelTimeout   (rpcrt4.@)
+ */
+RPC_STATUS RPC_ENTRY RpcMgmtSetCancelTimeout(LONG Timeout)
+{
+    FIXME("(%d): stub\n", Timeout);
+    return RPC_S_OK;
+}
+
+/******************************************************************************
+ * RpcCancelThread   (rpcrt4.@)
+ */
+RPC_STATUS RPC_ENTRY RpcCancelThread(HANDLE ThreadHandle)
+{
+    FIXME("(%p): stub\n", ThreadHandle);
+    return RPC_S_OK;
+}




More information about the wine-cvs mailing list