Filter Driver

H

hugomind

Hi,

I've downloaded den Microsoft DDK 3790.1830 and there is an example
under 3790.1830\src\storage\filters\diskperf
I've compiled this one and would like to know where I could find the
information that are written by using the DebugPrint function ?

DebugPrint((2, "DiskPerfAddDevice: Driver %X Device %X\n",
DriverObject, PhysicalDeviceObject));

I'm trying to get some knowledge on writing filter drivers.

Regards,
Hugo
 
C

Carl Daniel [VC++ MVP]

hugomind said:
Hi,

I've downloaded den Microsoft DDK 3790.1830 and there is an example
under 3790.1830\src\storage\filters\diskperf
I've compiled this one and would like to know where I could find the
information that are written by using the DebugPrint function ?

DebugPrint((2, "DiskPerfAddDevice: Driver %X Device %X\n",
DriverObject, PhysicalDeviceObject));

I'm trying to get some knowledge on writing filter drivers.

I'd suggest posting in microsoft.public.win32.programmer.kernel (as a
starting point - there are also driver-specific newsgroups).

The results of DebugPrint can be viewed with a kernel debugger (e.g. kd,
windbg) or with a debug viewer like DbgView (from SysInternals, now
Microsoft Technet).

http://technet.microsoft.com/en-us/sysinternals/bb896647.aspx

-cd
 
K

Kerem Gümrükcü

Hi Hugo,

this is simple. What you need is a tool like DbgView from Sysinternals.
You can get it from here:
http://technet.microsoft.com/en-us/sysinternals/bb896647.aspx

The Term "Filter Driver" does not say WHAT kind of Filter driver
you want to write(bus-filter,ll-device filter,ll-class filter, ul-filter,
Multimedia?)
because there are lots of Filters you can write, for any purpose. I
recommend
this source (below) for you, though this is a driver and kernel newsgroup. I
would like to write more here, but be sure that someone will tell me, that i
should not answer you!

Anyway, see here:

http://www.microsoft.com/whdc/driver/filterdrv/default.mspx

In future ask your questions regarding DDK and related here:

microsoft.public.development.device.drivers

Regards

Kerem

--
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top