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.

13 lines
260 B

  1. #include "stdinc.h"
  2. void DebugPrintVa(ULONG ulLevel, PCSTR Format, va_list va)
  3. {
  4. //do me
  5. }
  6. void DebugPrint(ULONG ulLevel, PCSTR Format, ...)
  7. {
  8. va_list va;
  9. va_start(va, Format);
  10. DebugPrintVa(ulLevel, Format, va);
  11. va_end(va);
  12. }