Filter Driver

Collapse
This topic is closed.
X
X
 
  • Time
  • Show
Clear All
new posts
  • hugomind

    #1

    Filter Driver

    Hi,

    I've downloaded den Microsoft DDK 3790.1830 and there is an example
    under 3790.1830\src\s torage\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, "DiskPerfAddDev ice: Driver %X Device %X\n",
    DriverObject, PhysicalDeviceO bject));

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

    Regards,
    Hugo
  • Carl Daniel [VC++ MVP]

    #2
    Re: Filter Driver

    hugomind wrote:
    Hi,
    >
    I've downloaded den Microsoft DDK 3790.1830 and there is an example
    under 3790.1830\src\s torage\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, "DiskPerfAddDev ice: Driver %X Device %X\n",
    DriverObject, PhysicalDeviceO bject));
    >
    I'm trying to get some knowledge on writing filter drivers.
    I'd suggest posting in microsoft.publi c.win32.program mer.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).

    This program intercepts calls made to DbgPrint by device drivers and OutputDebugString made by Win32 programs.


    -cd


    Comment

    • Kerem Gümrükcü

      #3
      Re: Filter Driver

      Hi Hugo,

      this is simple. What you need is a tool like DbgView from Sysinternals.
      You can get it from here:
      This program intercepts calls made to DbgPrint by device drivers and OutputDebugString made by Win32 programs.


      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...v/default.mspx

      In future ask your questions regarding DDK and related here:

      microsoft.publi c.development.d evice.drivers

      Regards

      Kerem

      --
      -----------------------
      Beste Grüsse / Best regards / Votre bien devoue
      Kerem Gümrükcü
      Microsoft Live Space: http://kerem-g.spaces.live.com/
      Latest Open-Source Projects: http://entwicklung.junetz.de
      -----------------------
      "This reply is provided as is, without warranty express or implied."


      Comment

      Working...