<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
<HTML><HEAD>
<META http-equiv=Content-Type content="text/html; charset=us-ascii">
<META content="MSHTML 6.00.6000.16587" name=GENERATOR></HEAD>
<BODY>
<DIV><FONT face=Arial size=2><SPAN class=186452213-16112008>Replace the use of 
DbgPrint with DbgPrintEx that is displayed on windows 2008 by 
default.</SPAN></FONT></DIV>
<DIV><FONT face=Arial size=2><SPAN 
class=186452213-16112008></SPAN></FONT> </DIV>
<DIV><FONT face=Arial size=2><SPAN class=186452213-16112008>Please note that 
this is a first replacement, and there are many more needed.</SPAN></FONT></DIV>
<DIV><FONT face=Arial size=2><SPAN 
class=186452213-16112008></SPAN></FONT> </DIV>
<DIV><FONT face=Arial size=2><SPAN 
class=186452213-16112008>Thanks</SPAN></FONT></DIV>
<DIV><FONT face=Arial size=2><SPAN 
class=186452213-16112008>Tzachi</SPAN></FONT></DIV>
<DIV><FONT face=Arial size=2></FONT> </DIV>
<DIV><FONT face=Arial size=2>Index: 
core/complib/kernel/cl_driver.c<BR>===================================================================<BR>--- 
core/complib/kernel/cl_driver.c (revision 3475)<BR>+++ 
core/complib/kernel/cl_driver.c (working copy)<BR>@@ -31,8 +31,8 
@@<BR> <BR> <BR> #include "complib/comp_lib.h"<BR>+#include 
<stdarg.h><BR> <BR>-<BR> CL_EXPORT 
NTSTATUS<BR> cl_to_ntstatus(<BR>  IN cl_status_t status 
)<BR>@@ -64,3 +64,14 @@<BR>   return 
CL_ERROR;<BR>  }<BR> }<BR>+<BR>+#if defined( _DEBUG_ 
)<BR>+<BR>+VOID cl_dbg_out( IN PCCH  format, 
...)<BR>+{<BR>+ va_list  list;<BR>+ va_start(list, 
format);<BR>+ vDbgPrintEx(DPFLTR_IHVNETWORK_ID, DPFLTR_ERROR_LEVEL, format, 
list);<BR>+ va_end(list);<BR>+}<BR>+#endif<BR>Index: 
inc/kernel/complib/cl_debug_osd.h<BR>===================================================================<BR>--- 
inc/kernel/complib/cl_debug_osd.h (revision 3475)<BR>+++ 
inc/kernel/complib/cl_debug_osd.h (working copy)<BR>@@ -59,7 +59,10 
@@<BR> <BR> <BR> #if defined( _DEBUG_ )<BR>-#define 
cl_dbg_out DbgPrint<BR>+<BR>+VOID cl_dbg_out( IN PCCH  Format, 
...);<BR>+<BR>+//#define 
cl_dbg_out DbgPrintHelper<BR> #else<BR> #define 
cl_dbg_out __noop<BR> #endif /* defined( _DEBUG_ ) 
*/</FONT></DIV></BODY></HTML>