// 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 referenceNo description available.
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.
HeaderThe header information for the NDIS_POLL_DATA structure.
TransmitAn NDIS_POLL_TRANSMIT_DATA structure.
ReceiveAn NDIS_POLL_RECEIVE_DATA structure.
NDIS passes a pointer to the NDIS_POLL_DATA structure when invoking NdisPoll.