https://git.reactos.org/?p=reactos.git;a=commitdiff;h=3b437b8a1ce6590a59b080ba4fa6c4af37abc2ac

commit 3b437b8a1ce6590a59b080ba4fa6c4af37abc2ac
Author:     Timo Kreuzer <[email protected]>
AuthorDate: Tue Dec 27 11:06:45 2022 +0100
Commit:     Timo Kreuzer <[email protected]>
CommitDate: Fri Dec 30 11:19:26 2022 +0100

    [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;

Reply via email to