// wiautil.h
void wiauDbgDump(
LPCSTR fname,
LPCSTR fmt,
...
);
View the official Windows Driver Kit DDI referenceNo description available.
The wiauDbgDump function logs a message containing one or more data values.
fnamePointer to a string containing the name of the function or method into which the call to wiauDbgDump is inserted.
fmtPointer to a format string that specifies a variable argument list, which starts with an ANSI format string containing the message and any conversion specifiers. The ellipsis (...) specifies a variable number of arguments that are to be output.
...The wiauDbgDump function typically is used to log a message along with one or more data values, as in the following example:
wiauDbgDump("SetBuffer", "Buffer size set to %d bytes.", size);
This example, which would be placed in a function named SetBuffer, causes the function name and a string describing the size of a buffer to be logged.