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

📄 driver.h

📁 Programming the Microsoft Windows driver model.2nd 随书光盘。内有很多作者送的实用工具和随书源码。WDM编程
💻 H
字号:
// Declarations for stupid driver

// Copyright (C) 1999, 2000 by Walter Oney

// All rights reserved



#pragma once



#define DRIVERNAME "STUPID"				// for use in messages

#define LDRIVERNAME L"STUPID"				// for use in UNICODE string constants



///////////////////////////////////////////////////////////////////////////////

// Device extension structure



typedef struct _DEVICE_EXTENSION {

	PDEVICE_OBJECT DeviceObject;			// device object this extension belongs to

	PDEVICE_OBJECT LowerDeviceObject;		// next lower driver in same stack

	PDEVICE_OBJECT Pdo;						// the PDO

	UNICODE_STRING ifname;					// interface name

	} DEVICE_EXTENSION, *PDEVICE_EXTENSION;

⌨️ 快捷键说明

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