⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 computer00usbdriver.h

📁 使用driverstudio开发的一个USB驱动程序
💻 H
字号:
// Computer00USBDriver.h
//
// Generated by DriverWizard 3.2.0 (Build 2485)
// Requires DDK and DriverWorks
// File created on 3/10/2008
//
// This include file contains the definition of a subclass of KDriver.
// WDM drivers declare a subclass of KDriver and override member
// function DriverEntry and AddDevice.
//
#ifndef __COMPUTER00USBDRIVER_H__
#define __COMPUTER00USBDRIVER_H__

class Computer00USBDriver : public KDriver
{
	SAFE_DESTRUCTORS
public:
	// Member functions
	virtual NTSTATUS DriverEntry(PUNICODE_STRING RegistryPath);
	virtual NTSTATUS AddDevice(PDEVICE_OBJECT Pdo);
	virtual VOID Unload(VOID);

	void LoadRegistryParameters(PUNICODE_STRING RegistryPath);

protected:
	// Member data
	int		m_Unit;
};

#endif // __COMPUTER00USBDRIVER_H__

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -