rpcrt4: Add a stub implementation for RpcMgmtIsServerListening.
This commit is contained in:
parent
c16ca72210
commit
0f8f927aed
|
@ -1090,3 +1090,12 @@ RPC_STATUS WINAPI RpcMgmtEpEltInqBegin(RPC_BINDING_HANDLE Binding, unsigned long
|
|||
Binding, InquiryType, IfId, VersOption, ObjectUuid, InquiryContext);
|
||||
return RPC_S_INVALID_BINDING;
|
||||
}
|
||||
|
||||
/***********************************************************************
|
||||
* RpcMgmtEpEltInqBegin (RPCRT4.@)
|
||||
*/
|
||||
RPC_STATUS WINAPI RpcMgmtIsServerListening(RPC_BINDING_HANDLE Binding)
|
||||
{
|
||||
FIXME("(%p): stub\n", Binding);
|
||||
return RPC_S_INVALID_BINDING;
|
||||
}
|
||||
|
|
|
@ -436,7 +436,7 @@
|
|||
@ stub RpcMgmtInqServerPrincNameA
|
||||
@ stub RpcMgmtInqServerPrincNameW
|
||||
@ stub RpcMgmtInqStats
|
||||
@ stub RpcMgmtIsServerListening
|
||||
@ stdcall RpcMgmtIsServerListening(ptr)
|
||||
@ stub RpcMgmtSetAuthorizationFn
|
||||
@ stub RpcMgmtSetCancelTimeout
|
||||
@ stub RpcMgmtSetComTimeout
|
||||
|
|
Loading…
Reference in New Issue