mirror of
git://source.winehq.org/git/wine.git
synced 2024-10-31 12:19:49 +00:00
rpcrt4: Add a stub for RpcBindingServerFromClient.
Signed-off-by: Austin English <austinenglish@gmail.com> Signed-off-by: Alexandre Julliard <julliard@winehq.org>
This commit is contained in:
parent
6b36d7cfef
commit
591f632218
2 changed files with 11 additions and 1 deletions
|
@ -1633,6 +1633,16 @@ RpcBindingInqAuthClientExW( RPC_BINDING_HANDLE ClientBinding, RPC_AUTHZ_HANDLE *
|
||||||
AuthnSvc, AuthzSvc, Flags);
|
AuthnSvc, AuthzSvc, Flags);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/***********************************************************************
|
||||||
|
* RpcBindingServerFromClient (RPCRT4.@)
|
||||||
|
*/
|
||||||
|
|
||||||
|
RPC_STATUS RPC_ENTRY RpcBindingServerFromClient(RPC_BINDING_HANDLE ClientBinding, RPC_BINDING_HANDLE *ServerBinding)
|
||||||
|
{
|
||||||
|
FIXME("%p %p: stub\n", ClientBinding, ServerBinding);
|
||||||
|
return RPC_S_INVALID_BINDING;
|
||||||
|
}
|
||||||
|
|
||||||
/***********************************************************************
|
/***********************************************************************
|
||||||
* RpcBindingSetAuthInfoExA (RPCRT4.@)
|
* RpcBindingSetAuthInfoExA (RPCRT4.@)
|
||||||
*/
|
*/
|
||||||
|
|
|
@ -352,7 +352,7 @@
|
||||||
@ stdcall RpcBindingInqObject(ptr ptr)
|
@ stdcall RpcBindingInqObject(ptr ptr)
|
||||||
@ stub RpcBindingInqOption
|
@ stub RpcBindingInqOption
|
||||||
@ stdcall RpcBindingReset(ptr)
|
@ stdcall RpcBindingReset(ptr)
|
||||||
@ stub RpcBindingServerFromClient
|
@ stdcall RpcBindingServerFromClient(ptr ptr)
|
||||||
@ stdcall RpcBindingSetAuthInfoA(ptr str long long ptr long)
|
@ stdcall RpcBindingSetAuthInfoA(ptr str long long ptr long)
|
||||||
@ stdcall RpcBindingSetAuthInfoExA(ptr str long long ptr long ptr)
|
@ stdcall RpcBindingSetAuthInfoExA(ptr str long long ptr long ptr)
|
||||||
@ stdcall RpcBindingSetAuthInfoExW(ptr wstr long long ptr long ptr)
|
@ stdcall RpcBindingSetAuthInfoExW(ptr wstr long long ptr long ptr)
|
||||||
|
|
Loading…
Reference in a new issue