#ifndef _NTDBG_H
/**
* Waits for a debug state change.
*
* \param StateChange A pointer to a DBGUI_WAIT_STATE_CHANGE structure that receives the state change information.
* \param Timeout Optional. A pointer to a LARGE_INTEGER structure that specifies the timeout.
* \return NTSTATUS Successful or errant status.
*/
NTSYSAPI
NTSTATUS
NTAPI
DbgUiWaitStateChange(
_Out_ PDBGUI_WAIT_STATE_CHANGE StateChange,
_In_opt_ PLARGE_INTEGER Timeout
);
View code on GitHubNo description available.