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.

31 lines
463 B

  1. /*++
  2. Copyright (c) 1997-1999 Microsoft Corporation
  3. --*/
  4. #include <stddef.h>
  5. #include <stdlib.h>
  6. #include <stdarg.h>
  7. #include <windef.h>
  8. #include <winbase.h>
  9. #include <wingdi.h>
  10. #include <winddi.h>
  11. #include <strsafe.h>
  12. //
  13. // Functions for outputting debug messages
  14. //
  15. VOID
  16. DbgPrint(IN LPCSTR pstrFormat, ...)
  17. {
  18. va_list ap;
  19. va_start(ap, pstrFormat);
  20. EngDebugPrint("", (PCHAR) pstrFormat, ap);
  21. va_end(ap);
  22. }