// netadapteroffload.h
void NET_ADAPTER_OFFLOAD_TX_CHECKSUM_CAPABILITIES_INIT(
[_Out_] NET_ADAPTER_OFFLOAD_TX_CHECKSUM_CAPABILITIES *Capabilities,
[_In_] NET_ADAPTER_OFFLOAD_LAYER3_FLAGS Layer3Flags,
[_In_] PFN_NET_ADAPTER_OFFLOAD_SET_TX_CHECKSUM EvtAdapterOffloadSetTxChecksum
);
View the official Windows Driver Kit DDI referenceNo description available.
The NET_ADAPTER_OFFLOAD_TX_CHECKSUM_CAPABILITIES_INIT function initializes a NET_ADAPTER_OFFLOAD_TX_CHECKSUM_CAPABILITIES structure.
Capabilities [_Out_]A pointer to a driver-allocated NET_ADAPTER_OFFLOAD_TX_CHECKSUM_CAPABILITIES structure.
Layer3Flags [_In_]Flags specifying the layer 3 protocol variations that the NIC can successfully perform Tx checksum on.
EvtAdapterOffloadSetTxChecksum [_In_]A pointer to the client driver's implementation of the EVT_NET_ADAPTER_OFFLOAD_SET_TX_CHECKSUM callback function.
The client driver calls NET_ADAPTER_OFFLOAD_TX_CHECKSUM_CAPABILITIES_INIT to initialize a NET_ADAPTER_OFFLOAD_TX_CHECKSUM_CAPABILITIES structure. The driver passes the initialized NET_ADAPTER_OFFLOAD_TX_CHECKSUM_CAPABILITIES structure as a parameter to the NetAdapterOffloadSetTxChecksumCapabilities function to register it.
NET_ADAPTER_OFFLOAD_TX_CHECKSUM_CAPABILITIES
NetAdapterOffloadSetTxChecksumCapabilities
EVT_NET_ADAPTER_OFFLOAD_SET_TX_CHECKSUM