ntdll: Add stub for NtQueryInformationProcess( ProcessHandleTable ).

This commit is contained in:
Paul Gofman 2023-01-30 17:14:33 -06:00 committed by Alexandre Julliard
parent f954fb881c
commit 1b1f8d914e
2 changed files with 7 additions and 0 deletions

View file

@ -1343,6 +1343,7 @@ NTSTATUS WINAPI NtQueryInformationProcess( HANDLE handle, PROCESSINFOCLASS class
else if (!handle) ret = STATUS_INVALID_HANDLE;
else
{
FIXME( "ProcessHandleCount (%p,%p,0x%08x,%p) stub\n", handle, info, (int)size, ret_len );
memset(info, 0, 4);
len = 4;
}
@ -1355,6 +1356,11 @@ NTSTATUS WINAPI NtQueryInformationProcess( HANDLE handle, PROCESSINFOCLASS class
}
break;
case ProcessHandleTable:
FIXME( "ProcessHandleTable (%p,%p,0x%08x,%p) stub\n", handle, info, (int)size, ret_len );
len = 0;
break;
case ProcessAffinityMask:
len = sizeof(ULONG_PTR);
if (size == len)

View file

@ -1574,6 +1574,7 @@ typedef enum _PROCESSINFOCLASS {
ProcessConsoleHostProcess = 49,
ProcessWindowInformation = 50,
ProcessHandleInformation = 51,
ProcessHandleTable = 58,
ProcessPowerThrottlingState = 77,
ProcessLeapSecondInformation = 97,
MaxProcessInfoClass,