driver.h

来自「Windows 2000设备驱动程序设计指南」· C头文件 代码 · 共 19 行

H
19
字号
// Driver.h - Chapter 6
//
// Copyright (C) 2000 by Jerry Lozano
//

#pragma once

extern "C" {
#include <NTDDK.h>
}
#include "Unicode.h"

typedef struct _DEVICE_EXTENSION {
	PDEVICE_OBJECT pDevice;
	ULONG DeviceNumber;
	CUString ustrDeviceName;	// internal name
	CUString ustrSymLinkName;	// external name
} DEVICE_EXTENSION, *PDEVICE_EXTENSION;

⌨️ 快捷键说明

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