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
399 B

  1. /*++
  2. Copyright (c) 1997-1999 Microsoft Corporation
  3. --*/
  4. #include <minidrv.h>
  5. // NTRAID#NTBUG9-581725-2002/03/20-v-sueyas-: Use strsafe.h(pdev.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. }