// mcd.h
VOID ChangerClassDebugPrint(
ULONG DebugPrintLevel,
PCCHAR DebugMessage,
...
);
View the official Windows Driver Kit DDI referenceNo description available.
The ChangerClassDebugPrint function prints debugging information.
DebugPrintLevelIndicates how verbose debug information should be. Caller must assign this parameter an integer value between zero and three, where three specifies the highest level of verbosity and zero the lowest.
DebugMessageCaller can specify a message to be included with the debugging information that is printed by assigning a printable ASCII character string to this parameter.
...TBD