📄 usb2com.sysctrl.cpp
字号:
//********************************************************************
// created: 11:7:2008 21:32
// file: usb2com.sysctrl.cpp
// author: tiamo
// purpose: system control
//********************************************************************
#include "stdafx.h"
//
// system control dispatch routine
//
NTSTATUS Usb2ComSystemControl(__in PDEVICE_OBJECT DeviceObject,__in PIRP Irp)
{
//
// we pass this irp down to the lower driver directly
//
PUSB2COM_DEVICE_EXTENSION DeviceExtension = static_cast<PUSB2COM_DEVICE_EXTENSION>(DeviceObject->DeviceExtension);
IoSkipCurrentIrpStackLocation(Irp);
return IoCallDriver(DeviceExtension->LowerDeviceObject,Irp);
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -