ntdll: Add stub for NtImpersonateAnonymousToken.

This commit is contained in:
Sebastian Lackner 2015-05-21 06:42:16 +02:00 committed by Alexandre Julliard
parent 7b9efb1f45
commit 39abfc4d74
2 changed files with 11 additions and 1 deletions

View File

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

View File

@ -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.@]