Module: wine Branch: master Commit: fa01fdc3219974f97a642a10889baf33fdba2ec6 URL: http://source.winehq.org/git/wine.git/?a=commit;h=fa01fdc3219974f97a642a1088...
Author: Francois Gouget fgouget@free.fr Date: Sat Feb 28 17:30:51 2015 +0100
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 e9c3fba..bccfd39 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;