mirror of
https://github.com/reactos/reactos.git
synced 2025-02-23 17:05:46 +00:00
LPC_MESSAGE.MessageType ==> PORT_MESSAGE.u2.s2.Type
Make head copmpile. svn path=/trunk/; revision=17280
This commit is contained in:
parent
2b0800d266
commit
97ffde7504
1 changed files with 3 additions and 3 deletions
|
@ -146,18 +146,18 @@ ProcessPortMessage(VOID)
|
|||
|
||||
DPRINT("Received message\n");
|
||||
|
||||
if (Request.Header.MessageType == LPC_PORT_CLOSED)
|
||||
if (Request.Header.u2.s2.Type == LPC_PORT_CLOSED)
|
||||
{
|
||||
DPRINT("Port closed\n");
|
||||
|
||||
return STATUS_SUCCESS;
|
||||
}
|
||||
if (Request.Header.MessageType == LPC_REQUEST)
|
||||
if (Request.Header.u2.s2.Type == LPC_REQUEST)
|
||||
{
|
||||
DPRINT("Received request\n");
|
||||
|
||||
}
|
||||
else if (Request.Header.MessageType == LPC_DATAGRAM)
|
||||
else if (Request.Header.u2.s2.Type == LPC_DATAGRAM)
|
||||
{
|
||||
DPRINT("Received datagram\n");
|
||||
|
||||
|
|
Loading…
Reference in a new issue