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

  1. ///////////////////////////////////////////////////
  2. // fmdebug.c
  3. //
  4. // September.4,1997 H.Ishida (FPL)
  5. //
  6. // COPYRIGHT(C) FUJITSU LIMITED 1997
  7. #if DBG
  8. #include <minidrv.h>
  9. #include "fmlbp.h"
  10. void dbgPrintf(LPSTR pszMsg, ...)
  11. {
  12. va_list arg;
  13. va_start(arg, pszMsg);
  14. // DbgPrint("[fmblpres]", pszMsg, arg);
  15. va_end(arg);
  16. }
  17. #endif // DBG
  18. // end of fmdebug.c