[PATCH 3/6] include: Add SystemHypervisorSharedPageInformation query.

Rémi Bernon rbernon at codeweavers.com
Wed Mar 10 05:22:33 CST 2021


Signed-off-by: Rémi Bernon <rbernon at codeweavers.com>
---
 include/winnt.h    | 5 +++++
 include/winternl.h | 1 +
 2 files changed, 6 insertions(+)

diff --git a/include/winnt.h b/include/winnt.h
index 7973960bf21..5cac1baac7e 100644
--- a/include/winnt.h
+++ b/include/winnt.h
@@ -6729,6 +6729,11 @@ typedef struct _SYSTEM_LOGICAL_PROCESSOR_INFORMATION_EX
     } DUMMYUNIONNAME;
 } SYSTEM_LOGICAL_PROCESSOR_INFORMATION_EX, *PSYSTEM_LOGICAL_PROCESSOR_INFORMATION_EX;
 
+typedef struct _SYSTEM_HYPERVISOR_SHARED_PAGE_INFORMATION
+{
+    PVOID HypervisorSharedUserVa;
+} SYSTEM_HYPERVISOR_SHARED_PAGE_INFORMATION, *PSYSTEM_HYPERVISOR_SHARED_PAGE_INFORMATION;
+
 /* Threadpool things */
 typedef DWORD TP_VERSION,*PTP_VERSION;
 
diff --git a/include/winternl.h b/include/winternl.h
index f0ab223ef2e..14c5f7bc99d 100644
--- a/include/winternl.h
+++ b/include/winternl.h
@@ -1306,6 +1306,7 @@ typedef enum _SYSTEM_INFORMATION_CLASS {
     SystemFileCacheInformationEx = 81,
     SystemDynamicTimeZoneInformation = 102,
     SystemLogicalProcessorInformationEx = 107,
+    SystemHypervisorSharedPageInformation = 197,
     SystemInformationClassMax
 } SYSTEM_INFORMATION_CLASS, *PSYSTEM_INFORMATION_CLASS;
 
-- 
2.30.0




More information about the wine-devel mailing list