Windows System Software -- Consulting, Training, Development -- Unique Expertise, Guaranteed Results
The free OSR Learning Library has more than 50 articles on a wide variety of topics about writing and debugging device drivers and Minifilters. From introductory level to advanced. All the articles have been recently reviewed and updated, and are written using the clear and definitive style you've come to expect from OSR over the years.
Check out The OSR Learning Library at: https://www.osr.com/osr-learning-library/
I want to implement a full-duplex asynchronous connection between the application and the driver, for this purpose I decided to use a mini-filter comm port, but I am confused by several points: FilterSendMessage func does not have an asynchronous version, plus I do not understand why there is a FilterReplyMessage func - it breaks all the logic of the client-server mechanism by throws out the internals of the FILTER_REPLY_HEADER = ((((Maybe someone will advise me how to implement the classic client-server approach?
Upcoming OSR Seminars | ||
---|---|---|
OSR has suspended in-person seminars due to the Covid-19 outbreak. But, don't miss your training! Attend via the internet instead! | ||
Writing WDF Drivers | 7 Dec 2020 | LIVE ONLINE |
Internals & Software Drivers | 25 Jan 2021 | LIVE ONLINE |
Developing Minifilters | 8 March 2021 | LIVE ONLINE |
Comments
FilterSendMessage is always going to be synchronous. Seems to me like you'll need to build your own interface using IRPs.
-scott
OSR