From fa01fdc3219974f97a642a10889baf33fdba2ec6 Mon Sep 17 00:00:00 2001 From: Francois Gouget Date: Sat, 28 Feb 2015 17:30:51 +0100 Subject: [PATCH] include/ddk: Make ntddk.h compatible with systems that don't support nameless unions. --- include/ddk/ntddk.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/include/ddk/ntddk.h b/include/ddk/ntddk.h index e9c3fbadd2d..bccfd39347e 100644 --- a/include/ddk/ntddk.h +++ b/include/ddk/ntddk.h @@ -119,8 +119,8 @@ typedef struct _IMAGE_INFO ULONG ImageMappedToAllPids : 1; ULONG ExtendedInfoPresent : 1; ULONG Reserved : 21; - }; - }; + } DUMMYSTRUCTNAME; + } DUMMYUNIONNAME; PVOID ImageBase; ULONG ImageSelector; SIZE_T ImageSize;