23 lines
311 B
C
23 lines
311 B
C
/*++
|
|
|
|
Copyright (c) 1997-1999 Microsoft Corporation
|
|
|
|
--*/
|
|
|
|
|
|
#include <minidrv.h>
|
|
|
|
//
|
|
// Functions for outputting debug messages
|
|
//
|
|
|
|
VOID
|
|
DbgPrint(IN LPCSTR pstrFormat, ...)
|
|
{
|
|
va_list ap;
|
|
|
|
va_start(ap, pstrFormat);
|
|
EngDebugPrint("", (PCHAR) pstrFormat, ap);
|
|
va_end(ap);
|
|
}
|