SlavaI
Главный специалист
Offline
|
|
« Ответ #1 : 14-11-2003 06:29 » |
|
А вот это читал в DDK
On Windows 2000 and later systems, the PnP Manager sends this IRP only if a prior IRP_MN_QUERY_STOP_DEVICE completed successfully.
У тебя IRP_MN_QUERY_STOP_DEVICE успешно завершается?
А скорее всего тебе IRP_MN_QUERY_REMOVE_DEVICE посылают, если у тебя Win 2k и выше. Так как в DDK написано что остановку девайса запрашивают в следующих случаях
1)To rebalance the hardware resources being used by the device. Rebalancing is typically necessary when a new device is enumerated that requires a resource already in use.
2)To disable the device in response to a Device Manager request (Windows 98/Me only). Windows 2000 and later systems send remove IRPs in this situation; see Understanding When Remove IRPs Are Issued.
3)After a failed IRP_MN_START_DEVICE request (Windows 98/Me only)
То есть на Win 2k и выше только превый пункт- To rebalance the hardware resources being used by the device, приведет к посылке IRP_MN_STOP_DEVICE.
|