ntdll: Add stub for NtImpersonateAnonymousToken.
This commit is contained in:
parent
7b9efb1f45
commit
39abfc4d74
|
@ -182,7 +182,7 @@
|
||||||
@ stub NtGetPlugPlayEvent
|
@ stub NtGetPlugPlayEvent
|
||||||
@ stdcall NtGetTickCount()
|
@ stdcall NtGetTickCount()
|
||||||
@ stdcall NtGetWriteWatch(long long ptr long ptr ptr ptr)
|
@ stdcall NtGetWriteWatch(long long ptr long ptr ptr ptr)
|
||||||
@ stub NtImpersonateAnonymousToken
|
@ stdcall NtImpersonateAnonymousToken(long)
|
||||||
@ stub NtImpersonateClientOfPort
|
@ stub NtImpersonateClientOfPort
|
||||||
@ stub NtImpersonateThread
|
@ stub NtImpersonateThread
|
||||||
@ stub NtInitializeRegistry
|
@ stub NtInitializeRegistry
|
||||||
|
|
|
@ -1522,6 +1522,16 @@ RtlImpersonateSelf(SECURITY_IMPERSONATION_LEVEL ImpersonationLevel)
|
||||||
return Status;
|
return Status;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/******************************************************************************
|
||||||
|
* NtImpersonateAnonymousToken [NTDLL.@]
|
||||||
|
*/
|
||||||
|
NTSTATUS WINAPI
|
||||||
|
NtImpersonateAnonymousToken(HANDLE thread)
|
||||||
|
{
|
||||||
|
FIXME("(%p): stub\n", thread);
|
||||||
|
return STATUS_NOT_IMPLEMENTED;
|
||||||
|
}
|
||||||
|
|
||||||
/******************************************************************************
|
/******************************************************************************
|
||||||
* NtAccessCheck [NTDLL.@]
|
* NtAccessCheck [NTDLL.@]
|
||||||
* ZwAccessCheck [NTDLL.@]
|
* ZwAccessCheck [NTDLL.@]
|
||||||
|
|
Loading…
Reference in New Issue