From 3b437b8a1ce6590a59b080ba4fa6c4af37abc2ac Mon Sep 17 00:00:00 2001 From: Timo Kreuzer Date: Tue, 27 Dec 2022 11:06:45 +0100 Subject: [PATCH] [NDK] Fix definition of RTL_DEBUG_INFORMATION Fixes ntdll_aiptest RtlDebugInformation on x64 --- sdk/include/ndk/rtltypes.h | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/sdk/include/ndk/rtltypes.h b/sdk/include/ndk/rtltypes.h index 369d52cd297..32bfb4fa486 100644 --- a/sdk/include/ndk/rtltypes.h +++ b/sdk/include/ndk/rtltypes.h @@ -1194,9 +1194,9 @@ typedef struct _RTL_DEBUG_INFORMATION HANDLE TargetProcessId; HANDLE TargetThreadHandle; ULONG Flags; - ULONG OffsetFree; - ULONG CommitSize; - ULONG ViewSize; + ULONG_PTR OffsetFree; + SIZE_T CommitSize; + SIZE_T ViewSize; union { PRTL_PROCESS_MODULES Modules;