AlpcGetMessageFromCompletionList - NtDoc

Native API online documentation, based on the System Informer (formerly Process Hacker) phnt headers
#ifndef _NTLPCAPI_H
// begin_private

/**
 * The AlpcGetMessageFromCompletionList routine retrieves a message from an ALPC completion list.
 *
 * \param CompletionList Pointer to the completion list.
 * \param MessageAttributes Optional receives the message attributes.
 * \return PPORT_MESSAGE Pointer to the retrieved message, or NULL if none are available.
 */
NTSYSAPI
PPORT_MESSAGE
NTAPI
AlpcGetMessageFromCompletionList(
    _In_ PVOID CompletionList,
    _Out_opt_ PALPC_MESSAGE_ATTRIBUTES *MessageAttributes
    );

// end_private
#endif

View code on GitHub

NtDoc

No description available.