Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在编写一个 KMDF 驱动程序,该驱动程序需要在每个 IRP 传递到 ioQueue 之前拦截它。
我有一个注册了 PreprocessIrpCallback 的回调函数,并希望像这样将它挂接到框架中
status = WdfDeviceInitAssignWdmIrpPreprocessCallback(DeviceInit , PreprocessIrpCallback , ? , ?);
但是,如果我想拦截每一个 IRP,问号里的内容是什么?