NDIS_POLL_CHARACTERISTICS - NtDoc

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

typedef struct _NDIS_POLL_CHARACTERISTICS {
  NDIS_OBJECT_HEADER                 Header;
  NDIS_SET_POLL_NOTIFICATION_HANDLER SetPollNotificationHandler;
  NDIS_POLL_HANDLER                  PollHandler;
} NDIS_POLL_CHARACTERISTICS;
View the official Windows Driver Kit DDI reference

NtDoc

No description available.

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

Description

The NDIS_POLL_CHARACTERISTICS structure contains a Poll object’s NdisPoll and NdisSetPollNotification callback pointers.

Members

The NDIS_OBJECT_HEADER structure for the NDIS_POLL_CHARACTERISTICS structure. Set the members of this structure as follows:

SetPollNotificationHandler

An entry point for the NdisSetPollNotification callback function that NDIS invokes when it wants the driver to enable or disable interrupts.

PollHandler

An entry point for the NdisPoll callback function that NDIS invokes to poll the driver for receive indications and send completions.

Remarks

Miniport drivers initialize the NDIS_POLL_CHARACTERISTICS structure and then pass it to NDIS when calling NdisRegisterPoll.

See also

NdisPoll

NdisSetPollNotification

NdisRegisterPoll