Module: wine Branch: stable Commit: 1a4eba2353045de0af64e543d43549f571710fc8 URL: https://source.winehq.org/git/wine.git/?a=commit;h=1a4eba2353045de0af64e543d... Author: Paul Gofman <gofmanp(a)gmail.com> Date: Wed Jan 22 19:08:28 2020 +0300 include: Add Vista+ PEB_LDR_DATA structure fields. Wine-Bug: https://bugs.winehq.org/show_bug.cgi?id=48289 Signed-off-by: Paul Gofman <gofmanp(a)gmail.com> Signed-off-by: Alexandre Julliard <julliard(a)winehq.org> (cherry picked from commit 34e64876b271f7c2b7ebc474030dbd4b8de322fd) Signed-off-by: Michael Stefaniuc <mstefani(a)winehq.org> --- include/winternl.h | 2 ++ 1 file changed, 2 insertions(+) diff --git a/include/winternl.h b/include/winternl.h index 0122684483..e5aed5acb1 100644 --- a/include/winternl.h +++ b/include/winternl.h @@ -213,6 +213,8 @@ typedef struct _PEB_LDR_DATA LIST_ENTRY InMemoryOrderModuleList; LIST_ENTRY InInitializationOrderModuleList; PVOID EntryInProgress; + BOOLEAN ShutdownInProgress; + HANDLE ShutdownThreadId; } PEB_LDR_DATA, *PPEB_LDR_DATA; typedef struct _GDI_TEB_BATCH