wmisampledeviceinterface.h

来自「windows 2000/xpWDM设备驱动程序开发光盘代码」· C头文件 代码 · 共 27 行

H
27
字号
// interface.h - device interface classes for WMISample

// This GUID identifies the device interface class used by the WMISampleDevice device

// TODO:	If your driver supports a standard interface, use the GUID that identifies
//			the interface class, rather than using the one defined below

#define WMISampleDevice_CLASS_GUID \
 { 0xfbb8f1c1, 0x1bc7, 0x4ec1, { 0x88, 0x7, 0xa0, 0xa4, 0x21, 0xad, 0x65, 0x5f } }

// CIM class Activity
static const GUID DRIVERWORKS_SAMPLE_DATA_GUID =
{ 0x770c1ce0, 0x5a49, 0x11d3, { 0x87, 0x6c, 0x0, 0xc0, 0xd1, 0x57, 0x49, 0x7d } };

// CIM class Control
static const GUID DRIVERWORKS_SAMPLE_CONTROL_GUID =
{ 0xa1c05cc0, 0x5a4c, 0x11d3, { 0x87, 0x6c, 0x0, 0xc0, 0xd1, 0x57, 0x49, 0x7d } };

// CIM class Event
static const GUID DRIVERWORKS_SAMPLE_EVENT_GUID =
{ 0xa6a23fb0, 0x6089, 0x11d3, { 0x87, 0x6f, 0x0, 0xc0, 0xd1, 0x57, 0x49, 0x7d } };

// CIM class PdoInformation
static const GUID DRIVERWORKS_SAMPLE_PDO_INFORMATION =
{ 0xc86c0370, 0x6a13, 0x11d3, { 0x87, 0x71, 0x0, 0xc0, 0xd1, 0x57, 0x49, 0x7d } };

⌨️ 快捷键说明

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