mirror of
https://github.com/reactos/reactos.git
synced 2025-08-03 17:45:41 +00:00
- Re-dispatch irp to the default handler
svn path=/trunk/; revision=40665
This commit is contained in:
parent
0152087f27
commit
c9234e9ca1
1 changed files with 6 additions and 0 deletions
|
@ -229,6 +229,12 @@ PcDispatchIrp(
|
||||||
case IRP_MJ_POWER :
|
case IRP_MJ_POWER :
|
||||||
return PortClsPower(DeviceObject, Irp);
|
return PortClsPower(DeviceObject, Irp);
|
||||||
|
|
||||||
|
case IRP_MJ_DEVICE_CONTROL:
|
||||||
|
return KsDispatchIrp(DeviceObject, Irp);
|
||||||
|
|
||||||
|
case IRP_MJ_CLOSE:
|
||||||
|
return KsDispatchIrp(DeviceObject, Irp);
|
||||||
|
|
||||||
case IRP_MJ_SYSTEM_CONTROL :
|
case IRP_MJ_SYSTEM_CONTROL :
|
||||||
return PortClsSysControl(DeviceObject, Irp);
|
return PortClsSysControl(DeviceObject, Irp);
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue