#ifndef _NTLPCAPI_H
NTSYSCALLAPI
NTSTATUS
NTAPI
NtCompleteConnectPort(
_In_ HANDLE PortHandle
);
View code on GitHub
#ifndef _NTZWAPI_H
NTSYSCALLAPI
NTSTATUS
NTAPI
ZwCompleteConnectPort(
_In_ HANDLE PortHandle
);
View code on GitHub
NtCompleteConnectPort
is called by server process after all initializations for new connection.
HANDLE
to Port Object received with NtAcceptConnectPort
call.
Return from NtConnectPort
on client's side is synchronised with return from this call. Both sides of LPC connection are ready for sending and receiving LPC messages.