阅读:1341回复:1
如何在驱动中遍历当前设备栈,并取得相应的设备名称?
我能通过IoGetDeviceProperty(DevicePropertyPhysicalDeviceObjectName )取得栈底PDO的设备名称,但是一旦我用IoGetDeviceProperty(DevicePropertyPhysicalDeviceObjectName )来取一个FDO的设备名称时就会报错。请问我怎么才能取得一个FDO的设备名称呢?(我是通过AttachedDevice来进行遍历的)
|
|
|
沙发#
发布于:2007-05-16 16:25
for(nextDevice=pdo;nextDevice!=NULL;nextDevice=nextDevice->AttachedDevice)
{ 用IoGetDeviceProperty得到nextDvice的名字; } |
|
|