rpcrt4: Add stubs for RpcNetworkInqProtseqs.
This commit is contained in:
parent
878a588800
commit
57b7044cd6
|
@ -824,6 +824,24 @@ static RPC_STATUS RPCRT4_use_protseq(RpcServerProtseq* ps, const char *endpoint)
|
|||
return status;
|
||||
}
|
||||
|
||||
/***********************************************************************
|
||||
* 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.@)
|
||||
*/
|
||||
|
|
|
@ -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
|
||||
|
|
Loading…
Reference in New Issue