Module: wine Branch: master Commit: 0def647b6e5d9dc1648b0021e6a7a40bfdaaf2fe URL: https://source.winehq.org/git/wine.git/?a=commit;h=0def647b6e5d9dc1648b0021e...
Author: Paul Gofman pgofman@codeweavers.com Date: Mon May 25 18:42:00 2020 +0300
include/ddk: Fix struct _KUSER_SHARED_DATA definition.
HeapTracingPid, CritSecTracingPid are present in NT 6.0. But NT 6.0 has UserModeGlobalLogger array size of 8 instead of 16.
Signed-off-by: Paul Gofman pgofman@codeweavers.com Signed-off-by: Alexandre Julliard julliard@winehq.org
---
include/ddk/wdm.h | 2 -- 1 file changed, 2 deletions(-)
diff --git a/include/ddk/wdm.h b/include/ddk/wdm.h index 790d1a1247..1f80a5af29 100644 --- a/include/ddk/wdm.h +++ b/include/ddk/wdm.h @@ -1258,8 +1258,6 @@ typedef struct _KUSER_SHARED_DATA { ULONG EnclaveFeatureMask[4]; /* 0x36c */ ULONG TelemetryCoverageRound; /* 0x37c */ USHORT UserModeGlobalLogger[16]; /* 0x380 */ - ULONG HeapTracingPid[2]; /* 0x390 */ - ULONG CritSecTracingPid[2]; /* 0x398 */ ULONG ImageFileExecutionOptions; /* 0x3a0 */ ULONG LangGenerationCount; /* 0x3a4 */ ULONG ActiveProcessorAffinity; /* 0x3a8 */