Added NtQueryProcessInformation case needed by NT version of MSI.
This commit is contained in:
parent
b195d9fe54
commit
efc069cbb3
|
@ -166,6 +166,15 @@ NTSTATUS WINAPI NtQueryInformationProcess(
|
||||||
else
|
else
|
||||||
ret = STATUS_INFO_LENGTH_MISMATCH;
|
ret = STATUS_INFO_LENGTH_MISMATCH;
|
||||||
break;
|
break;
|
||||||
|
case ProcessWow64Information:
|
||||||
|
if (ProcessInformationLength == 4)
|
||||||
|
{
|
||||||
|
memset(ProcessInformation,0,ProcessInformationLength);
|
||||||
|
len = 4;
|
||||||
|
}
|
||||||
|
else
|
||||||
|
ret = STATUS_INFO_LENGTH_MISMATCH;
|
||||||
|
break;
|
||||||
default:
|
default:
|
||||||
FIXME("(%p,0x%08x,%p,0x%08lx,%p),stub!\n",
|
FIXME("(%p,0x%08x,%p,0x%08lx,%p),stub!\n",
|
||||||
ProcessHandle,ProcessInformationClass,
|
ProcessHandle,ProcessInformationClass,
|
||||||
|
|
Loading…
Reference in New Issue