阅读:2768回复:1
Vista下如何获得wdf device句柄?
如果我的驱动也是wdf,那么方法有很多, 随便哪种方法都可以获得wdf device句柄. 但是问题是我目前在wdm驱动上面,想和wdf驱动进行通话, 我目前所能够知道的条件就是,wdf device 的名称unicodeName. 我的步骤如下:
result = IoGetDeviceObjectPointer( &unicodeName, FILE_READ_ATTRIBUTES, &pFile, &pDevice ); 下一步, 应该是可以根据pFile, 和pDevice来获得wdf的device句柄. 不知谁知道,指点一下.谢谢 |
|
|
沙发#
发布于:2008-01-31 08:30
Why don't you care about the wdf device object? you can send an IRP from your WDM driver to that WDF driver.
|
|