// minitape.h
SCSIPORT_API VOID TapeDebugPrint(
ULONG DebugPrintLevel,
PCCHAR DebugMessage,
...
);
View the official Windows Driver Kit DDI referenceNo description available.
The TapeDebugPrint routine prints the indicated string.
DebugPrintLevelDetermines 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.
DebugMessagePointer to the string to be printed.
...Variadic arguments for the string that DebugMessage points to.
None