rpcrt4: Improve the stubs for RpcImpersonateClient and RpcRevertToSelf.

This commit is contained in:
Robert Shearman 2006-07-24 11:46:07 +01:00 committed by Alexandre Julliard
parent a8531067c4
commit ba9158e2e1
1 changed files with 2 additions and 0 deletions

View File

@ -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;
}