#ifndef _NTLPCAPI_H
NTSYSCALLAPI
NTSTATUS
NTAPI
NtReplyWaitReplyPort(
_In_ HANDLE PortHandle,
_Inout_ PPORT_MESSAGE ReplyMessage
);
View code on GitHub
#ifndef _NTZWAPI_H
NTSYSCALLAPI
NTSTATUS
NTAPI
ZwReplyWaitReplyPort(
_In_ HANDLE PortHandle,
_Inout_ PPORT_MESSAGE ReplyMessage
);
View code on GitHub
NtReplyWaitReplyPort
sends REPLY and waits for other side REPLY.
HANDLE
to Port Object.
There's a pointer to LPC_MESSAGE
structure. On input, should be filled with REPLY data by user. On output it contains REPLY from other side.