MINIPORT_DEVICE_PNP_EVENT_NOTIFY回调函数 (ndis.h)

NDIS 调用微型端口驱动程序的 MiniportDevicePnPEventNotify 函数,以通知驱动程序即插即用 (PnP) 事件。

注意 必须使用 MINIPORT_DEVICE_PNP_EVENT_NOTIFY 类型声明函数。 有关详细信息,请参阅以下示例部分。
 

语法

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) ( 开机状态。
第二种情况下, InformationBuffer 中的值指示系统是使用电池电源 (NdisPowerProfileBattery) 还是使用交流电源 (NdisPowerProfileAcOnline) 运行。 驱动程序可以使用此信息来调整指定微型端口适配器的功耗。 例如,如果系统使用电池电源运行,无线 LAN 设备的驱动程序可以减少功耗,如果系统使用交流电源运行,则会增加功耗。

当驱动程序收到意外删除通知 (NetDevicePnPEvent 参数的 DevicePnPEvent 成员为 NdisDevicePnPEventSurpriseRemoved) 时,它应:

  • 请注意,在内部,设备已被移除。
  • 取消发送到基础总线驱动程序的任何挂起的 IRP。
在 NDIS 调用 MiniportDevicePnPEventNotify 函数以指示意外删除后,NDIS 调用驱动程序的 MiniportHaltEx 函数。 如果驱动程序在 NDIS 调用 MiniportHaltEx 之前收到任何发送请求或 OID 请求,则应立即完成状态值为 NDIS_STATUS_NOT_ACCEPTED 的此类请求。

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

另请参阅

MiniportHaltEx

MiniportInitializeEx

NET_DEVICE_PNP_EVENT

NdisMRegisterMiniportDriver

OID_PNP_SET_POWER