Leaked source code of windows server 2003
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

24 lines
393 B

  1. /*++
  2. Copyright (c) 1997-1999 Microsoft Corporation
  3. --*/
  4. // NTRAID#NTBUG9-553896-2002/03/19-yasuho-: mandatory changes
  5. #include <minidrv.h>
  6. #include <pdev.h>
  7. //
  8. // Functions for outputting debug messages
  9. //
  10. VOID
  11. DbgPrint(IN LPCSTR pstrFormat, ...)
  12. {
  13. va_list ap;
  14. va_start(ap, pstrFormat);
  15. EngDebugPrint("", (PCHAR) pstrFormat, ap);
  16. va_end(ap);
  17. }