Alistair Leslie-Hughes : include: Use known variables names in SYSTEM_INTERRUPT_INFORMATION.

Alexandre Julliard julliard at winehq.org
Thu Oct 14 15:09:34 CDT 2021


Module: wine
Branch: master
Commit: 3adee2ce3aed9d0f4e1ae49fe310cc82d454faf9
URL:    https://source.winehq.org/git/wine.git/?a=commit;h=3adee2ce3aed9d0f4e1ae49fe310cc82d454faf9

Author: Alistair Leslie-Hughes <leslie_alistair at hotmail.com>
Date:   Thu Oct 14 19:45:57 2021 +1100

include: Use known variables names in SYSTEM_INTERRUPT_INFORMATION.

Signed-off-by: Alistair Leslie-Hughes <leslie_alistair at hotmail.com>
Signed-off-by: Alexandre Julliard <julliard at winehq.org>

---

 include/winternl.h | 7 ++++++-
 1 file changed, 6 insertions(+), 1 deletion(-)

diff --git a/include/winternl.h b/include/winternl.h
index 46ee508e89f..6b1c5b11b4f 100644
--- a/include/winternl.h
+++ b/include/winternl.h
@@ -2469,7 +2469,12 @@ typedef struct _SYSTEM_CACHE_INFORMATION {
 /* System Information Class 0x17 */
 
 typedef struct _SYSTEM_INTERRUPT_INFORMATION {
-    BYTE Reserved1[24];
+    ULONG ContextSwitches;
+    ULONG DpcCount;
+    ULONG DpcRate;
+    ULONG TimeIncrement;
+    ULONG DpcBypassCount;
+    ULONG ApcBypassCount;
 } SYSTEM_INTERRUPT_INFORMATION, *PSYSTEM_INTERRUPT_INFORMATION;
 
 typedef struct _SYSTEM_CONFIGURATION_INFO {




More information about the wine-cvs mailing list