StreamClassDebugAssert - NtDoc

Native API online documentation, based on the System Informer (formerly Process Hacker) phnt headers
// 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 reference

NtDoc

No description available.

Windows Driver Kit DDI reference (nf-strmini-streamclassdebugassert)

Description

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.

Parameters

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.

Return value

None

Remarks

See also