forusbqueue.h

来自「赠送两个学生毕业设计」· C头文件 代码 · 共 27 行

H
27
字号
// 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 + =
减小字号Ctrl + -
显示快捷键?