I am writing a graphic miniport driver for Windows NT 4.0 - 5.1. I am stuck in the situation, that HwVidStartIo of my miniport driver never gets called.
I would expect that a display driver triggers the function calls by sending requests to videoprt.sys and then videoprt.sys calls my HwVidStartIo. But somehow no display driver cares about my miniport driver.
Do I need to announce or register my miniport driver to a display driver somehow?
When the system boots the flow is like this:
- DriverEntry gets called
- HwVidFindAdapter gets called
- HwVidFindAdapter returns NO_ERROR/0x00
- HwVidFindAdapter gets called
- HwVidFindAdapter returns ERROR_INVALID_PARAMETER/0x57
- HwVidFindAdapter gets called
- HwVidFindAdapter returns ERROR_INVALID_PARAMETER/0x57
- HwVidFindAdapter gets called
- HwVidFindAdapter returns NO_ERROR/0x00
- DriverEntry returns 0x00 (return value of VideoPortInitialize)
- HwVidInitialize gets called
- HwVidInitialize returns true/0x01
- HwVidInitialize gets called
- HwVidInitialize returns true/0x01
Ok, I figured it out.
My .inf-file stated:
Which might be fine for plug and play drivers. But mine is not plug and play compatible. So I had to change it to
Finally I can move on.