Skip to content
Snippets Groups Projects
Commit ab146959 authored by Zebediah Figura's avatar Zebediah Figura Committed by Alexandre Julliard
Browse files

ntdll: Stub NtQuerySystemInformation(SystemExtendedProcessInformation).

parent 1c4350ac
No related branches found
No related tags found
No related merge requests found
......@@ -2615,6 +2615,12 @@ NTSTATUS WINAPI NtQuerySystemInformation( SYSTEM_INFORMATION_CLASS class,
break;
}
case SystemExtendedProcessInformation:
FIXME("SystemExtendedProcessInformation, size %u, info %p, stub!\n", size, info);
memset( info, 0, size );
ret = STATUS_SUCCESS;
break;
default:
FIXME( "(0x%08x,%p,0x%08x,%p) stub\n", class, info, size, ret_size );
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment