/*++ Copyright (c) 1997-1999 Microsoft Corporation --*/ // NTRAID#NTBUG9-553896-2002/03/19-yasuho-: mandatory changes #include #include // // Functions for outputting debug messages // VOID DbgPrint(IN LPCSTR pstrFormat, ...) { va_list ap; va_start(ap, pstrFormat); EngDebugPrint("", (PCHAR) pstrFormat, ap); va_end(ap); }