#ifndef _NTLPCAPI_H
// begin_private
/**
* The AlpcGetCompletionListLastMessageInformation routine retrieves information about the last message in an ALPC completion list.
*
* \param CompletionList Pointer to the completion list.
* \param LastMessageId Receives the ID of the last message.
* \param LastCallbackId Receives the callback ID of the last message.
*/
NTSYSAPI
VOID
NTAPI
AlpcGetCompletionListLastMessageInformation(
_In_ PVOID CompletionList,
_Out_ PULONG LastMessageId,
_Out_ PULONG LastCallbackId
);
View code on GitHubNo description available.