NDIS_POLL_DATA - NtDoc

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

typedef struct _NDIS_POLL_DATA {
  NDIS_OBJECT_HEADER      Header;
  NDIS_POLL_TRANSMIT_DATA Transmit;
  NDIS_POLL_RECEIVE_DATA  Receive;
} NDIS_POLL_DATA;
View the official Windows Driver Kit DDI reference

NtDoc

No description available.

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

Description

The NDIS_POLL_DATA structure contains pointers to the NDIS_POLL_TRANSMIT_DATA and NDIS_POLL_RECEIVE_DATA structures that the miniport driver uses to perform receive indications and send completions when using a Poll object.

Members

The header information for the NDIS_POLL_DATA structure.

Transmit

An NDIS_POLL_TRANSMIT_DATA structure.

Receive

An NDIS_POLL_RECEIVE_DATA structure.

Remarks

NDIS passes a pointer to the NDIS_POLL_DATA structure when invoking NdisPoll.

See also

NDIS_POLL_TRANSMIT_DATA

NDIS_POLL_RECEIVE_DATA

NdisPoll