ntdll: Fix the LPC_MESSAGE structure definition for 64-bit.

This commit is contained in:
Alexandre Julliard 2009-05-07 13:42:39 +02:00
parent 3e7647ad72
commit 82fb611806
3 changed files with 6 additions and 6 deletions

View File

@ -691,8 +691,8 @@ NTSTATUS WINAPI NtRequestWaitReplyPort(
TRACE("\tVirtualRangesOffset = %u\n",pLpcMessageIn->VirtualRangesOffset);
TRACE("\tClientId.UniqueProcess = %p\n",pLpcMessageIn->ClientId.UniqueProcess);
TRACE("\tClientId.UniqueThread = %p\n",pLpcMessageIn->ClientId.UniqueThread);
TRACE("\tMessageId = %u\n",pLpcMessageIn->MessageId);
TRACE("\tSectionSize = %u\n",pLpcMessageIn->SectionSize);
TRACE("\tMessageId = %lu\n",pLpcMessageIn->MessageId);
TRACE("\tSectionSize = %lu\n",pLpcMessageIn->SectionSize);
TRACE("\tData = %s\n",
debugstr_an((const char*)pLpcMessageIn->Data,pLpcMessageIn->DataSize));
}

View File

@ -62,8 +62,8 @@ typedef struct _LPC_MESSAGE
USHORT MessageType;
USHORT VirtualRangesOffset;
CLIENT_ID ClientId;
ULONG MessageId;
ULONG SectionSize;
ULONG_PTR MessageId;
ULONG_PTR SectionSize;
UCHAR Data[ANYSIZE_ARRAY];
} LPC_MESSAGE, *PLPC_MESSAGE;

View File

@ -1803,8 +1803,8 @@ typedef struct _LPC_MESSAGE {
USHORT MessageType;
USHORT VirtualRangesOffset;
CLIENT_ID ClientId;
ULONG MessageId;
ULONG SectionSize;
ULONG_PTR MessageId;
ULONG_PTR SectionSize;
UCHAR Data[ANYSIZE_ARRAY];
} LPC_MESSAGE, *PLPC_MESSAGE;