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

Alexandre Julliard julliard at winehq.org
Tue Oct 30 08:32:46 CDT 2007


Module: wine
Branch: master
Commit: 9f8d9e3e05f4703784d889f9855c3e3580cd3ce6
URL:    http://source.winehq.org/git/wine.git/?a=commit;h=9f8d9e3e05f4703784d889f9855c3e3580cd3ce6

Author: Klaus Layer <klaus.layer at gmx.de>
Date:   Sun Oct 28 00:02:41 2007 +0200

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

---

 dlls/ntdll/nt.c |    5 +++++
 1 files changed, 5 insertions(+), 0 deletions(-)

diff --git a/dlls/ntdll/nt.c b/dlls/ntdll/nt.c
index 15fb507..c241e94 100644
--- a/dlls/ntdll/nt.c
+++ b/dlls/ntdll/nt.c
@@ -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:




More information about the wine-cvs mailing list