https://git.reactos.org/?p=reactos.git;a=commitdiff;h=918c98a2394030adef69c0f44c0076acce103008

commit 918c98a2394030adef69c0f44c0076acce103008
Author:     Timo Kreuzer <[email protected]>
AuthorDate: Sun Dec 25 15:02:11 2022 +0200
Commit:     Timo Kreuzer <[email protected]>
CommitDate: Fri Dec 30 11:19:26 2022 +0100

    [NDK] Fix definition of LDR_ENUM_RESOURCE_INFO
    
    This fixes ntdll_apitest LdrEnumResources on x64 Windows
---
 sdk/include/ndk/ldrtypes.h | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/sdk/include/ndk/ldrtypes.h b/sdk/include/ndk/ldrtypes.h
index 41385ba39be..fcc76cac8dc 100644
--- a/sdk/include/ndk/ldrtypes.h
+++ b/sdk/include/ndk/ldrtypes.h
@@ -189,8 +189,8 @@ typedef struct _LDR_ENUM_RESOURCE_INFO
     ULONG_PTR Name;
     ULONG_PTR Language;
     PVOID Data;
-    SIZE_T Size;
-    ULONG_PTR Reserved;
+    ULONG Size;
+    ULONG Reserved;
 } LDR_ENUM_RESOURCE_INFO, *PLDR_ENUM_RESOURCE_INFO;
 
 //

Reply via email to