rpcrt4: Implement RpcBindingReset.
This commit is contained in:
parent
e98539520d
commit
739d89369b
|
@ -1012,6 +1012,23 @@ RPC_STATUS RPC_ENTRY RpcBindingCopy(
|
|||
return RPC_S_OK;
|
||||
}
|
||||
|
||||
/***********************************************************************
|
||||
* RpcBindingReset (RPCRT4.@)
|
||||
*/
|
||||
RPC_STATUS RPC_ENTRY RpcBindingReset(RPC_BINDING_HANDLE Binding)
|
||||
{
|
||||
RpcBinding *bind = Binding;
|
||||
|
||||
TRACE("(%p)\n", Binding);
|
||||
|
||||
RPCRT4_strfree(bind->Endpoint);
|
||||
bind->Endpoint = NULL;
|
||||
if (bind->Assoc) RpcAssoc_Release(bind->Assoc);
|
||||
bind->Assoc = NULL;
|
||||
|
||||
return RPC_S_OK;
|
||||
}
|
||||
|
||||
/***********************************************************************
|
||||
* RpcImpersonateClient (RPCRT4.@)
|
||||
*
|
||||
|
|
|
@ -350,7 +350,7 @@
|
|||
@ stdcall RpcBindingInqAuthInfoW(ptr ptr ptr ptr ptr ptr)
|
||||
@ stdcall RpcBindingInqObject(ptr ptr)
|
||||
@ stub RpcBindingInqOption
|
||||
@ stub RpcBindingReset
|
||||
@ stdcall RpcBindingReset(ptr)
|
||||
@ stub RpcBindingServerFromClient
|
||||
@ stdcall RpcBindingSetAuthInfoA(ptr str long long ptr long)
|
||||
@ stdcall RpcBindingSetAuthInfoExA(ptr str long long ptr long ptr)
|
||||
|
|
Loading…
Reference in New Issue