Added NtQueryProcessInformation case needed by NT version of MSI.

This commit is contained in:
Robert Shearman 2003-04-12 00:01:32 +00:00 committed by Alexandre Julliard
parent b195d9fe54
commit efc069cbb3
1 changed files with 9 additions and 0 deletions

View File

@ -166,6 +166,15 @@ NTSTATUS WINAPI NtQueryInformationProcess(
else
ret = STATUS_INFO_LENGTH_MISMATCH;
break;
case ProcessWow64Information:
if (ProcessInformationLength == 4)
{
memset(ProcessInformation,0,ProcessInformationLength);
len = 4;
}
else
ret = STATUS_INFO_LENGTH_MISMATCH;
break;
default:
FIXME("(%p,0x%08x,%p,0x%08lx,%p),stub!\n",
ProcessHandle,ProcessInformationClass,