Share via


NDIS_MINIPORT_ADAPTER_ATTRIBUTES (Compact 2013)

3/26/2014

This structure is a placeholder for the following structures:

  • NDIS_MINIPORT_ADAPTER_GENERAL_ATTRIBUTES
    An NDIS miniport driver sets up an NDIS_MINIPORT_ADAPTER_REGISTRATION_ATTRIBUTES structure to define registration attributes that are associated with a miniport adapter.
  • NDIS_MINIPORT_ADAPTER_OFFLOAD_ATTRIBUTES
    An NDIS miniport driver sets up an NDIS_MINIPORT_ADAPTER_OFFLOAD_ATTRIBUTES structure to define task offload and connection offload attributes, if any, that are associated with a miniport adapter.

Syntax

typedef union _NDIS_MINIPORT_ADAPTER_ATTRIBUTES
{
  NDIS_MINIPORT_ADD_DEVICE_REGISTRATION_ATTRIBUTES  AddDeviceRegistrationAttributes;
  NDIS_MINIPORT_ADAPTER_REGISTRATION_ATTRIBUTES  RegistrationAttributes;
  NDIS_MINIPORT_ADAPTER_GENERAL_ATTRIBUTES  GeneralAttributes;
  NDIS_MINIPORT_ADAPTER_OFFLOAD_ATTRIBUTES  OffloadAttributes;
  NDIS_MINIPORT_ADAPTER_NATIVE_802_11_ATTRIBUTES  Native_802_11_Attributes;

  NDIS_MINIPORT_ADAPTER_HARDWARE_ASSIST_ATTRIBUTES  HardwareAssistAttributes;

} NDIS_MINIPORT_ADAPTER_ATTRIBUTES, *PNDIS_MINIPORT_ADAPTER_ATTRIBUTES;

Members

  • AddDeviceRegistrationAttributes
    A NDIS_MINIPORT_ADD_DEVICE_REGISTRATION_ATTRIBUTES structure.
  • HardwareAssistAttributes
    A NDIS_MINIPORT_ADAPTER_HARDWARE_ASSIST_ATTRIBUTES structure.

Remarks

Miniport drivers pass these structures to the MiniportAttributes parameter of the NdisMSetMiniportAttributes function.

Requirements

Header

ndis.h

See Also

Reference

Miniport Driver Structures
NDIS_MINIPORT_ADAPTER_GENERAL_ATTRIBUTES
NDIS_MINIPORT_ADAPTER_NATIVE_802_11_ATTRIBUTES
NDIS_MINIPORT_ADAPTER_OFFLOAD_ATTRIBUTES
NDIS_MINIPORT_ADAPTER_REGISTRATION_ATTRIBUTES
NdisMSetMiniportAttributes