rpcrt4: Add a stub for RpcBindingSetOption.
This commit is contained in:
parent
9519004b1a
commit
a4f5296ec6
|
@ -1040,3 +1040,12 @@ RpcBindingSetAuthInfoW( RPC_BINDING_HANDLE Binding, unsigned short *ServerPrincN
|
|||
AuthnLevel, AuthnSvc, AuthIdentity, AuthzSvr);
|
||||
return RPC_S_OK;
|
||||
}
|
||||
|
||||
/***********************************************************************
|
||||
* RpcBindingSetOption (RPCRT4.@)
|
||||
*/
|
||||
RPC_STATUS WINAPI RpcBindingSetOption(RPC_BINDING_HANDLE BindingHandle, ULONG Option, ULONG OptionValue)
|
||||
{
|
||||
FIXME("(%p, %ld, %ld): stub\n", BindingHandle, Option, OptionValue);
|
||||
return RPC_S_OK;
|
||||
}
|
||||
|
|
|
@ -390,7 +390,7 @@
|
|||
@ stdcall RpcBindingSetAuthInfoExW(ptr wstr long long ptr long ptr)
|
||||
@ stdcall RpcBindingSetAuthInfoW(ptr wstr long long ptr long)
|
||||
@ stdcall RpcBindingSetObject(ptr ptr)
|
||||
@ stub RpcBindingSetOption
|
||||
@ stdcall RpcBindingSetOption(ptr long long)
|
||||
@ stdcall RpcBindingToStringBindingA(ptr ptr)
|
||||
@ stdcall RpcBindingToStringBindingW(ptr ptr)
|
||||
@ stdcall RpcBindingVectorFree(ptr)
|
||||
|
|
Loading…
Reference in New Issue