#ifndef _NTLPCAPI_H
/**
* The NtReplyWaitReplyPort routine sends a reply and waits for a new reply.
*
* \param PortHandle Handle to the port object.
* \param ReplyMessage On input, the reply data; on output, the next reply received.
* \return NTSTATUS Successful or errant status.
*/
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 GitHubNo description available.
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.