Commit ab146959 authored by Zebediah Figura's avatar Zebediah Figura Committed by Alexandre Julliard

ntdll: Stub NtQuerySystemInformation(SystemExtendedProcessInformation).

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