Commit 57b7044c authored by Damjan Jovanovic's avatar Damjan Jovanovic Committed by Alexandre Julliard

rpcrt4: Add stubs for RpcNetworkInqProtseqs.

parent 878a5888
......@@ -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 )
......
......@@ -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
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment