// poll.h
typedef struct _NDIS_POLL_NOTIFICATION {
NDIS_OBJECT_HEADER Header;
BOOLEAN Enabled;
} NDIS_POLL_NOTIFICATION;
View the official Windows Driver Kit DDI referenceNo description available.
The NDIS_POLL_NOTIFICATION structure contains the interrupt state associated with a Poll object.
HeaderThe header information for the NDIS_POLL_NOTIFICATION structure.
EnabledA value of TRUE requests that the miniport driver enable the interrupt associated with this Poll object. A value of FALSE requests that the miniport driver disable the interrupt.
NDIS passes a pointer to the NDIS_POLL_NOTIFICATION structure when invoking the miniport driver's NdisSetPollNotification callback.