#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
);
View code on GitHubNo description available.