Commit 1b1f8d91 authored by Paul Gofman's avatar Paul Gofman Committed by Alexandre Julliard

ntdll: Add stub for NtQueryInformationProcess( ProcessHandleTable ).

parent f954fb88
...@@ -1343,6 +1343,7 @@ NTSTATUS WINAPI NtQueryInformationProcess( HANDLE handle, PROCESSINFOCLASS class ...@@ -1343,6 +1343,7 @@ NTSTATUS WINAPI NtQueryInformationProcess( HANDLE handle, PROCESSINFOCLASS class
else if (!handle) ret = STATUS_INVALID_HANDLE; else if (!handle) ret = STATUS_INVALID_HANDLE;
else else
{ {
FIXME( "ProcessHandleCount (%p,%p,0x%08x,%p) stub\n", handle, info, (int)size, ret_len );
memset(info, 0, 4); memset(info, 0, 4);
len = 4; len = 4;
} }
...@@ -1355,6 +1356,11 @@ NTSTATUS WINAPI NtQueryInformationProcess( HANDLE handle, PROCESSINFOCLASS class ...@@ -1355,6 +1356,11 @@ NTSTATUS WINAPI NtQueryInformationProcess( HANDLE handle, PROCESSINFOCLASS class
} }
break; break;
case ProcessHandleTable:
FIXME( "ProcessHandleTable (%p,%p,0x%08x,%p) stub\n", handle, info, (int)size, ret_len );
len = 0;
break;
case ProcessAffinityMask: case ProcessAffinityMask:
len = sizeof(ULONG_PTR); len = sizeof(ULONG_PTR);
if (size == len) if (size == len)
......
...@@ -1574,6 +1574,7 @@ typedef enum _PROCESSINFOCLASS { ...@@ -1574,6 +1574,7 @@ typedef enum _PROCESSINFOCLASS {
ProcessConsoleHostProcess = 49, ProcessConsoleHostProcess = 49,
ProcessWindowInformation = 50, ProcessWindowInformation = 50,
ProcessHandleInformation = 51, ProcessHandleInformation = 51,
ProcessHandleTable = 58,
ProcessPowerThrottlingState = 77, ProcessPowerThrottlingState = 77,
ProcessLeapSecondInformation = 97, ProcessLeapSecondInformation = 97,
MaxProcessInfoClass, MaxProcessInfoClass,
......
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