// ndis.h
VOID NdisFDevicePnPEventNotify(
[in] NDIS_HANDLE NdisFilterHandle,
[in] PNET_DEVICE_PNP_EVENT NetDevicePnPEvent
);
View the official Windows Driver Kit DDI referenceNo description available.
A filter driver can call the NdisFDevicePnPEventNotify function to forward a device Plug and Play (PnP) or Power Management event to underlying drivers.
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.
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.