From 493a3b43ad9a94cebf247f8aa38a1ca22125ae95 Mon Sep 17 00:00:00 2001 From: Timo Kreuzer Date: Fri, 8 Jul 2011 09:25:50 +0000 Subject: [PATCH] [NDK] Fix LPCP_PORT_OBJECT definition svn path=/trunk/; revision=52568 --- reactos/include/ndk/lpctypes.h | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/reactos/include/ndk/lpctypes.h b/reactos/include/ndk/lpctypes.h index 44419618d5d..2f869a8d9e9 100644 --- a/reactos/include/ndk/lpctypes.h +++ b/reactos/include/ndk/lpctypes.h @@ -209,8 +209,11 @@ typedef struct _LPCP_PORT_OBJECT SECURITY_CLIENT_CONTEXT StaticSecurity; LIST_ENTRY LpcReplyChainHead; LIST_ENTRY LpcDataInfoChainHead; - PEPROCESS ServerProcess; - PEPROCESS MappingProcess; + union + { + PEPROCESS ServerProcess; + PEPROCESS MappingProcess; + }; ULONG MaxMessageLength; ULONG MaxConnectionInfoLength; ULONG Flags;