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.

23 lines
377 B

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