NdisFDevicePnPEventNotify - NtDoc

Native API online documentation, based on the System Informer (formerly Process Hacker) phnt headers
// ndis.h

VOID NdisFDevicePnPEventNotify(
  [in] NDIS_HANDLE           NdisFilterHandle,
  [in] PNET_DEVICE_PNP_EVENT NetDevicePnPEvent
);
View the official Windows Driver Kit DDI reference

NtDoc

No description available.

Windows Driver Kit DDI reference (nf-ndis-ndisfdevicepnpeventnotify)

NdisFDevicePnPEventNotify function

Description

A filter driver can call the NdisFDevicePnPEventNotify function to forward a device Plug and Play (PnP) or Power Management event to underlying drivers.

Parameters

NdisFilterHandle [in]

The NDIS handle that identifies this filter module. NDIS passed the handle to the filter driver in a call to the FilterAttach function.

NetDevicePnPEvent [in]

A pointer to a NET_DEVICE_PNP_EVENT structure that describes a device Plug and Play event.

Remarks

NDIS calls a filter driver's FilterDevicePnPEventNotify function to notify the filter driver of device PnP and Power Management events that affect an underlying device object.

Filter drivers can forward these notifications to underlying drivers. To forward a request, call the NdisFDevicePnPEventNotify function before returning from the FilterDevicePnPEventNotify function.

See also

FilterAttach

FilterDevicePnPEventNotify

NET_DEVICE_PNP_EVENT