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.

16 lines
328 B

  1. #include "pch.h"
  2. #pragma hdrstop
  3. /*****************************************************************************
  4. * Purpose: Cool debug function
  5. */
  6. void DebugPrint(char *szFmt, ...)
  7. {
  8. char szDebug[200];
  9. va_list base;
  10. va_start(base,szFmt);
  11. wvsprintfA(szDebug, szFmt, base);
  12. OutputDebugStringA(szDebug);
  13. }