📄 forusbqueue.h
字号:
// ForUsbQueue.h
//
// Generated by DriverWizard 3.2.0 (Build 2485)
// Requires DDK and DriverWorks
// File created on 6/8/2007
//
// This include file contains the definition of a subclass of KDriverManagedQueueCsq.
// This class implements a driver managed queue that serializes IRP
// processing so that requests are processed one at a time. Not all
// IRP's are required to use a queue. More than one instance of this
// queue may be used. For instance, the driver may be able to process
// reads and writes at the same time (i.e. 2 different channels.)
// This class has the benefit of NOT using the system global cancel
// spin lock.
//
#ifndef __FORUSBQUEUE_H__
#define __FORUSBQUEUE_H__
class ForUsbQueue : public KDriverManagedQueueCsq
{
public:
SAFE_DESTRUCTORS;
virtual VOID StartIo(KIrp I);
};
#endif // __FORUSBQUEUE_H__
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -