#ifndef _NTLPCAPI_H
// begin_private
/**
* The NtAlpcCreateSecurityContext routine creates a security context for an ALPC port.
*
* \param PortHandle Handle to the ALPC port.
* \param Flags Creation flags.
* \param SecurityAttribute Specifies the security attributes and QoS.
* \return NTSTATUS Successful or errant status.
*/
_Kernel_entry_
NTSYSCALLAPI
NTSTATUS
NTAPI
NtAlpcCreateSecurityContext(
_In_ HANDLE PortHandle,
_Reserved_ ULONG Flags,
_Inout_ PALPC_SECURITY_ATTR SecurityAttribute
);
View code on GitHub#ifndef _NTZWAPI_H
_Kernel_entry_
NTSYSCALLAPI
NTSTATUS
NTAPI
ZwAlpcCreateSecurityContext(
_In_ HANDLE PortHandle,
_Reserved_ ULONG Flags,
_Inout_ PALPC_SECURITY_ATTR SecurityAttribute
);
View code on GitHubNo description available.