mirror of
git://source.winehq.org/git/wine.git
synced 2024-11-05 18:01:34 +00:00
ntdll: Add stub for NtImpersonateAnonymousToken.
This commit is contained in:
parent
7b9efb1f45
commit
39abfc4d74
2 changed files with 11 additions and 1 deletions
|
@ -182,7 +182,7 @@
|
|||
@ stub NtGetPlugPlayEvent
|
||||
@ stdcall NtGetTickCount()
|
||||
@ stdcall NtGetWriteWatch(long long ptr long ptr ptr ptr)
|
||||
@ stub NtImpersonateAnonymousToken
|
||||
@ stdcall NtImpersonateAnonymousToken(long)
|
||||
@ stub NtImpersonateClientOfPort
|
||||
@ stub NtImpersonateThread
|
||||
@ stub NtInitializeRegistry
|
||||
|
|
|
@ -1522,6 +1522,16 @@ RtlImpersonateSelf(SECURITY_IMPERSONATION_LEVEL ImpersonationLevel)
|
|||
return Status;
|
||||
}
|
||||
|
||||
/******************************************************************************
|
||||
* NtImpersonateAnonymousToken [NTDLL.@]
|
||||
*/
|
||||
NTSTATUS WINAPI
|
||||
NtImpersonateAnonymousToken(HANDLE thread)
|
||||
{
|
||||
FIXME("(%p): stub\n", thread);
|
||||
return STATUS_NOT_IMPLEMENTED;
|
||||
}
|
||||
|
||||
/******************************************************************************
|
||||
* NtAccessCheck [NTDLL.@]
|
||||
* ZwAccessCheck [NTDLL.@]
|
||||
|
|
Loading…
Reference in a new issue