mirror of
https://github.com/reactos/reactos.git
synced 2025-07-23 12:23:42 +00:00
Better stubs for RpcImpersonateClient and RpcRevertToSelf (taken from Wine)
svn path=/trunk/; revision=24492
This commit is contained in:
parent
cc0716b65d
commit
32ac32df07
2 changed files with 12 additions and 1 deletions
|
@ -1163,6 +1163,7 @@ RPC_STATUS WINAPI RpcNetworkIsProtseqValidW(LPWSTR protseq) {
|
|||
RPC_STATUS WINAPI RpcImpersonateClient(RPC_BINDING_HANDLE BindingHandle)
|
||||
{
|
||||
FIXME("(%p): stub\n", BindingHandle);
|
||||
ImpersonateSelf(SecurityImpersonation);
|
||||
return RPC_S_OK;
|
||||
}
|
||||
|
||||
|
@ -1189,3 +1190,13 @@ RPC_STATUS WINAPI RpcRevertToSelfEx(RPC_BINDING_HANDLE BindingHandle)
|
|||
FIXME("(%p): stub\n", BindingHandle);
|
||||
return RPC_S_OK;
|
||||
}
|
||||
|
||||
/***********************************************************************
|
||||
* RpcRevertToSelf (RPCRT4.@)
|
||||
*/
|
||||
RPC_STATUS WINAPI RpcRevertToSelf(void)
|
||||
{
|
||||
FIXME("stub\n");
|
||||
RevertToSelf();
|
||||
return RPC_S_OK;
|
||||
}
|
||||
|
|
|
@ -458,7 +458,7 @@
|
|||
@ stub RpcProtseqVectorFreeW
|
||||
@ stdcall RpcRaiseException(long)
|
||||
@ stub RpcRegisterAsyncInfo
|
||||
@ stub RpcRevertToSelf
|
||||
@ stdcall RpcRevertToSelf()
|
||||
@ stdcall RpcRevertToSelfEx(ptr)
|
||||
@ stdcall RpcServerInqBindings(ptr)
|
||||
@ stub RpcServerInqCallAttributesA # wxp
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue