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

///////////////////////////////////////////////////
// fmdebug.c
//
// September.4,1997 H.Ishida (FPL)
//
// COPYRIGHT(C) FUJITSU LIMITED 1997
#if DBG
#include <minidrv.h>
#include "fmlbp.h"
void dbgPrintf(LPSTR pszMsg, ...)
{
va_list arg;
va_start(arg, pszMsg);
// DbgPrint("[fmblpres]", pszMsg, arg);
va_end(arg);
}
#endif // DBG
// end of fmdebug.c