TapeDebugPrint - NtDoc

Native API online documentation, based on the System Informer (formerly Process Hacker) phnt headers
// minitape.h

SCSIPORT_API VOID TapeDebugPrint(
  ULONG  DebugPrintLevel,
  PCCHAR DebugMessage,
  ...    
);
View the official Windows Driver Kit DDI reference

NtDoc

No description available.

Windows Driver Kit DDI reference (nf-minitape-tapedebugprint)

TapeDebugPrint function

Description

The TapeDebugPrint routine prints the indicated string.

Parameters

DebugPrintLevel

Determines whether the string is printed. If DebugPrintLevel is less than or equal to the tape class global variable TapeClassDebug, TapeDebugPrint prints the debug message, otherwise nothing is printed. If this parameter has a value of zero, TapeClassDebug always prints the message.

DebugMessage

Pointer to the string to be printed.

...

Variadic arguments for the string that DebugMessage points to.

Return value

None