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

  1. #include <stddef.h>
  2. #include <stdlib.h>
  3. #include <stdarg.h>
  4. #include <windef.h>
  5. #include <winbase.h>
  6. #include <wingdi.h>
  7. #include <winddi.h>
  8. //
  9. // Functions for outputting debug messages
  10. //
  11. VOID
  12. DbgPrint(IN LPCSTR pstrFormat, ...)
  13. {
  14. va_list ap;
  15. va_start(ap, pstrFormat);
  16. EngDebugPrint("", (PCHAR) pstrFormat, ap);
  17. va_end(ap);
  18. }