DbgUiContinue - NtDoc

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

/**
 * Continues a debug state change.
 *
 * \param AppClientId A pointer to a CLIENT_ID structure that identifies the thread to be continued.
 * \param ContinueStatus The status code to use when continuing the thread.
 * \return NTSTATUS Successful or errant status.
 */
NTSYSAPI
NTSTATUS
NTAPI
DbgUiContinue(
    _In_ PCLIENT_ID AppClientId,
    _In_ NTSTATUS ContinueStatus
    );

#endif

View code on GitHub

NtDoc

No description available.