Skip to content
Snippets Groups Projects
Commit 407fd270 authored by Andrew Wesie's avatar Andrew Wesie Committed by Alexandre Julliard
Browse files

ntdll: Return success for TokenIntegrityLevel in NtSetInformationToken.

parent de8d2043
Branches
Tags
No related merge requests found
......@@ -638,6 +638,10 @@ NTSTATUS WINAPI NtSetInformationToken(
FIXME("TokenSessionId stub!\n");
ret = STATUS_SUCCESS;
break;
case TokenIntegrityLevel:
FIXME("TokenIntegrityLevel stub!\n");
ret = STATUS_SUCCESS;
break;
default:
FIXME("unimplemented class %u\n", TokenInformationClass);
break;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment