Skeeter
02/09/2002
just use DbgPrint(), it is "active" with the release version of a
driver. I assume you're using KdPrint() normally? This is not
effective in a release driver, but DbgPrint() really is.
HTH,
Spiro.
Do not know what is _DbgPrint( .. ). I guess _DbgPrint( ..) has been defined
in your environement to do nothing in free build and to DbgPrint() in
checked build.
--Salim
"Xu Wen Bin" <wb...@yahoo.com> wrote in message
news:2a7b8e44.02020...@posting.google.com...
#ifndef _DBGNT_
ULONG
_cdecl
DbgPrint(
PCH Format,
...
);
// end_wdm
ULONG
_cdecl
DbgPrintReturnControlC(
PCH Format,
...
);
// begin_wdm
#endif // _DBGNT_
wb...@yahoo.com (Xu Wen Bin) wrote in message news:<2a7b8e44.02020...@posting.google.com>...
-Gary
"Xu Wen Bin" <wb...@yahoo.com> wrote in message
news:2a7b8e44.02020...@posting.google.com...
Skeeter