NET_ADAPTER_LINK_LAYER_CAPABILITIES_INIT - NtDoc

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

void NET_ADAPTER_LINK_LAYER_CAPABILITIES_INIT(
  [_Out_] NET_ADAPTER_LINK_LAYER_CAPABILITIES *LinkLayerCapabilities,
  [_In_]  ULONG64                             MaxTxLinkSpeed,
  [_In_]  ULONG64                             MaxRxLinkSpeed
);
View the official Windows Driver Kit DDI reference

NtDoc

No description available.

Windows Driver Kit DDI reference (nf-netadapter-net_adapter_link_layer_capabilities_init)

NET_ADAPTER_LINK_LAYER_CAPABILITIES_INIT function

Description

The NET_ADAPTER_LINK_LAYER_CAPABILITIES_INIT function initializes a NET_ADAPTER_LINK_LAYER_CAPABILITIES structure.

Parameters

LinkLayerCapabilities [_Out_]

A pointer to the driver-allocated NET_ADAPTER_LINK_LAYER_CAPABILITIES structure that describes the link layer capabilities of the adapter.

MaxTxLinkSpeed [_In_]

The maximum transmit link speed of the adapter in bits per second. For more information, see OID_GEN_MAX_LINK_SPEED.

MaxRxLinkSpeed [_In_]

The maximum receive link speed of the adapter in bits per second. For more information, see OID_GEN_MAX_LINK_SPEED.

Remarks

NET_ADAPTER_LINK_LAYER_CAPABILITIES_INIT zeroes out the NET_ADAPTER_LINK_LAYER_CAPABILITIES structure and then sets all of its members.

See also