// strmini.h
__analysis_noreturn VOID STREAMAPI StreamClassDebugAssert(
[in] IN PCHAR File,
[in] IN ULONG Line,
[in] IN PCHAR AssertText,
[in] IN ULONG AssertValue
);
View the official Windows Driver Kit DDI referenceNo description available.
This function is obsolete.
Checked builds were available on older versions of Windows, before Windows 10 version 1803. Use tools such as Driver Verifier and GFlags to check driver code in later versions of Windows.
File [in]Pointer to a NULL-terminated string containing the file name in which the assert occurred.
Line [in]Specifies the line number of the assert.
AssertText [in]Pointer to a NULL-terminated string containing text to be printed in the debug message.
AssertValue [in]Specifies a value to be printed in the debug message.
None