NDIS_POLL_NOTIFICATION - NtDoc

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

typedef struct _NDIS_POLL_NOTIFICATION {
  NDIS_OBJECT_HEADER Header;
  BOOLEAN            Enabled;
} NDIS_POLL_NOTIFICATION;
View the official Windows Driver Kit DDI reference

NtDoc

No description available.

Windows Driver Kit DDI reference (ns-poll-ndis_poll_notification)

Description

The NDIS_POLL_NOTIFICATION structure contains the interrupt state associated with a Poll object.

Members

The header information for the NDIS_POLL_NOTIFICATION structure.

Enabled

A 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.

Remarks

NDIS passes a pointer to the NDIS_POLL_NOTIFICATION structure when invoking the miniport driver's NdisSetPollNotification callback.

See also

NdisSetPollNotification