#ifndef _NTDBG_H
/**
* Sends a message to the kernel debugger and returns Control-C status.
*
* \param Format A pointer to a printf-style format string.
* \param ... Arguments for the format string.
* \return ULONG The number of characters printed.
*/
NTSYSAPI
ULONG
STDAPIVCALLTYPE
DbgPrintReturnControlC(
_In_z_ _Printf_format_string_ PCCH Format,
...
);
View code on GitHubNo description available.