Commit 9f8d9e3e authored by Klaus Layer's avatar Klaus Layer Committed by Alexandre Julliard

ntdll: Add missing FIXMEs for incomplete info classes in NtQuerySystemInformation.

parent 35ff6d67
......@@ -738,6 +738,7 @@ NTSTATUS WINAPI NtQuerySystemInformation(
else memcpy( SystemInformation, &spi, len);
}
else ret = STATUS_INFO_LENGTH_MISMATCH;
FIXME("info_class SYSTEM_PERFORMANCE_INFORMATION\n");
}
break;
case SystemTimeOfDayInformation:
......@@ -892,6 +893,7 @@ NTSTATUS WINAPI NtQuerySystemInformation(
else memcpy( SystemInformation, &sppi, len);
}
else ret = STATUS_INFO_LENGTH_MISMATCH;
FIXME("info_class SYSTEM_PROCESSOR_PERFORMANCE_INFORMATION\n");
}
break;
case SystemModuleInformation:
......@@ -912,6 +914,7 @@ NTSTATUS WINAPI NtQuerySystemInformation(
else memcpy( SystemInformation, &shi, len);
}
else ret = STATUS_INFO_LENGTH_MISMATCH;
FIXME("info_class SYSTEM_HANDLE_INFORMATION\n");
}
break;
case SystemCacheInformation:
......@@ -927,6 +930,7 @@ NTSTATUS WINAPI NtQuerySystemInformation(
else memcpy( SystemInformation, &sci, len);
}
else ret = STATUS_INFO_LENGTH_MISMATCH;
FIXME("info_class SYSTEM_CACHE_INFORMATION\n");
}
break;
case SystemInterruptInformation:
......@@ -942,6 +946,7 @@ NTSTATUS WINAPI NtQuerySystemInformation(
else memcpy( SystemInformation, &sii, len);
}
else ret = STATUS_INFO_LENGTH_MISMATCH;
FIXME("info_class SYSTEM_INTERRUPT_INFORMATION\n");
}
break;
case SystemKernelDebuggerInformation:
......
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