Commit ba9158e2 authored by Robert Shearman's avatar Robert Shearman Committed by Alexandre Julliard

rpcrt4: Improve the stubs for RpcImpersonateClient and RpcRevertToSelf.

parent a8531067
......@@ -893,6 +893,7 @@ RPC_STATUS RPC_ENTRY RpcBindingCopy(
RPC_STATUS WINAPI RpcImpersonateClient(RPC_BINDING_HANDLE BindingHandle)
{
FIXME("(%p): stub\n", BindingHandle);
ImpersonateSelf(SecurityImpersonation);
return RPC_S_OK;
}
......@@ -958,6 +959,7 @@ ULONG RpcAuthInfo_Release(RpcAuthInfo *AuthInfo)
RPC_STATUS WINAPI RpcRevertToSelf(void)
{
FIXME("stub\n");
RevertToSelf();
return RPC_S_OK;
}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment