Partager via


NDIS_POLL_CHARACTERISTICS structure (poll.h)

La structure NDIS_POLL_CHARACTERISTICS contient les pointeurs de rappel NdisPoll et NdisSetPollNotification d’un objet Poll.

Syntaxe

typedef struct _NDIS_POLL_CHARACTERISTICS {
  NDIS_OBJECT_HEADER                 Header;
  NDIS_SET_POLL_NOTIFICATION_HANDLER SetPollNotificationHandler;
  NDIS_POLL_HANDLER                  PollHandler;
} NDIS_POLL_CHARACTERISTICS;

Membres

Header

Structure NDIS_OBJECT_HEADER de la structure NDIS_POLL_CHARACTERISTICS . Définissez les membres de cette structure comme suit :

  • Type = NDIS_OBJECT_TYPE_DEFAULT
  • Révision = NDIS_POLL_CHARACTERISTICS_REVISION_1
  • Taille = NDIS_SIZEOF_NDIS_POLL_CHARACTERISTICS_REVISION_1

SetPollNotificationHandler

Point d’entrée pour la fonction de rappel NdisSetPollNotification que NDIS appelle lorsqu’il souhaite que le pilote active ou désactive les interruptions.

PollHandler

Point d’entrée pour la fonction de rappel NdisPoll que NDIS appelle pour interroger le pilote pour obtenir des indications de réception et des achèvements d’envoi.

Remarques

Les pilotes miniport initialisent la structure NDIS_POLL_CHARACTERISTICS , puis la passent à NDIS lors de l’appel de NdisRegisterPoll.

Configuration requise

Condition requise Valeur
Client minimal pris en charge Windows 11
Serveur minimal pris en charge Windows Server 2022
En-tête poll.h (include ndis.h)

Voir aussi

NdisPoll

NdisSetPollNotification

NdisRegisterPoll