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
429 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. #include "strsafe.h" // Security-Code 2002.3.6
  9. //
  10. // Functions for outputting debug messages
  11. //
  12. VOID
  13. DbgPrint(IN LPCSTR pstrFormat, ...)
  14. {
  15. va_list ap;
  16. va_start(ap, pstrFormat);
  17. EngDebugPrint("", (PCHAR) pstrFormat, ap);
  18. va_end(ap);
  19. }