MINIPORT_DEVICE_PNP_EVENT_NOTIFY回调函数 (ndis.h)
NDIS 调用微型端口驱动程序的 MiniportDevicePnPEventNotify 函数,以通知驱动程序即插即用 (PnP) 事件。
语法
MINIPORT_DEVICE_PNP_EVENT_NOTIFY MiniportDevicePnpEventNotify;
void MiniportDevicePnpEventNotify(
[in] NDIS_HANDLE MiniportAdapterContext,
[in] PNET_DEVICE_PNP_EVENT NetDevicePnPEvent
)
{...}
参数
[in] MiniportAdapterContext
微型端口驱动程序在其 MiniportInitializeEx 函数中分配的上下文区域的句柄。 微型端口驱动程序使用此上下文区域来维护微型端口适配器的状态信息。
[in] NetDevicePnPEvent
指向描述设备即插即用事件的NET_DEVICE_PNP_EVENT结构的指针。
返回值
无
备注
驱动程序在调用 时指定 MiniportDevicePnPEventNotify 入口点 NdisMRegisterMiniportDriver 函数。
NDIS 调用驱动程序的 MiniportDevicePnPEventNotify 函数,在发生以下事件之一后,NetDevicePnPEvent 参数的 DevicePnPEvent 成员设置为 NdisDevicePnPEventPowerProfileChanged:
- 驱动程序初始化已完成。
- 驱动程序收到 一条OID_PNP_SET_POWER 通知,该通知指定 NdisDeviceStateD0) ( 开机状态。
当驱动程序收到意外删除通知 (NetDevicePnPEvent 参数的 DevicePnPEvent 成员为 NdisDevicePnPEventSurpriseRemoved) 时,它应:
- 请注意,在内部,设备已被移除。
- 取消发送到基础总线驱动程序的任何挂起的 IRP。
NDIS 在 IRQL = PASSIVE_LEVEL 调用 MiniportDevicePnPEventNotify 。
示例
若要定义 MiniportDevicePnPEventNotify 函数,必须首先提供一个函数声明来标识要定义的函数类型。 Windows 为驱动程序提供一组函数类型。 使用函数类型声明函数可帮助 驱动程序的代码分析、 静态驱动程序验证程序 (SDV) 和其他验证工具查找错误,并且这是编写 Windows 操作系统驱动程序的要求。例如,若要定义名为“ MyDevicePnPEventNotify”的 MiniportDevicePnPEventNotify 函数,请使用 MINIPORT_DEVICE_PNP_EVENT_NOTIFY 类型,如以下代码示例所示:
MINIPORT_DEVICE_PNP_EVENT_NOTIFY MyDevicePnPEventNotify;
然后,按如下所示实现函数:
_Use_decl_annotations_
VOID
MyDevicePnPEventNotify(
NDIS_HANDLE MiniportAdapterContext,
PNET_DEVICE_PNP_EVENT NetDevicePnPEvent
)
{...}
MINIPORT_DEVICE_PNP_EVENT_NOTIFY函数类型在 Ndis.h 头文件中定义。 若要在运行代码分析工具时更准确地识别错误,请务必将 Use_decl_annotations 注释添加到函数定义。 Use_decl_annotations批注可确保使用应用于头文件中MINIPORT_DEVICE_PNP_EVENT_NOTIFY函数类型的注释。 有关函数声明要求的详细信息,请参阅 使用 NDIS 驱动程序的函数角色类型声明函数。
有关 Use_decl_annotations的信息,请参阅 批注函数行为。
要求
要求 | 值 |
---|---|
最低受支持的客户端 | 在 NDIS 6.0 及更高版本中受支持。 |
目标平台 | Windows |
标头 | ndis.h (包括 Ndis.h) |
IRQL | PASSIVE_LEVEL |
DDI 符合性规则 | NdisOidComplete |