[2/2] rpcrt4: add stubs for RpcNetworkInqProtseqs

Damjan Jovanovic damjan.jov at gmail.com
Fri Jun 17 08:40:33 CDT 2011


Changelog:
* rpcrt4: add stubs for RpcNetworkInqProtseqs

Damjan Jovanovic
-------------- next part --------------
diff --git a/dlls/rpcrt4/rpc_server.c b/dlls/rpcrt4/rpc_server.c
index 9fd4cf6..3a9ecf8 100644
--- a/dlls/rpcrt4/rpc_server.c
+++ b/dlls/rpcrt4/rpc_server.c
@@ -825,6 +825,24 @@ static RPC_STATUS RPCRT4_use_protseq(RpcServerProtseq* ps, const char *endpoint)
 }
 
 /***********************************************************************
+ *             RpcNetworkInqProtseqsA (RPCRT4.@)
+ */
+RPC_STATUS WINAPI RpcNetworkInqProtseqsA( RPC_PROTSEQ_VECTORA* ProtSeqVector )
+{
+    FIXME("(%p): stub\n", ProtSeqVector);
+    return RPC_S_NO_PROTSEQS_REGISTERED;
+}
+
+/***********************************************************************
+ *             RpcNetworkInqProtseqsW (RPCRT4.@)
+ */
+RPC_STATUS WINAPI RpcNetworkInqProtseqsW( RPC_PROTSEQ_VECTORW* ProtSeqVector )
+{
+    FIXME("(%p): stub\n", ProtSeqVector);
+    return RPC_S_NO_PROTSEQS_REGISTERED;
+}
+
+/***********************************************************************
  *             RpcServerInqBindings (RPCRT4.@)
  */
 RPC_STATUS WINAPI RpcServerInqBindings( RPC_BINDING_VECTOR** BindingVector )
diff --git a/dlls/rpcrt4/rpcrt4.spec b/dlls/rpcrt4/rpcrt4.spec
index b88c16d..598e60e 100644
--- a/dlls/rpcrt4/rpcrt4.spec
+++ b/dlls/rpcrt4/rpcrt4.spec
@@ -409,8 +409,8 @@
 @ stdcall RpcMgmtStatsVectorFree(ptr)
 @ stdcall RpcMgmtStopServerListening(ptr)
 @ stdcall RpcMgmtWaitServerListen()
-@ stub RpcNetworkInqProtseqsA
-@ stub RpcNetworkInqProtseqsW
+@ stdcall RpcNetworkInqProtseqsA(ptr)
+@ stdcall RpcNetworkInqProtseqsW(ptr)
 @ stdcall RpcNetworkIsProtseqValidA(ptr)
 @ stdcall RpcNetworkIsProtseqValidW(ptr)
 @ stub RpcNsBindingInqEntryNameA


More information about the wine-patches mailing list