// netadapteroffload.h
void NET_ADAPTER_OFFLOAD_RX_CHECKSUM_CAPABILITIES_INIT(
[_Out_] NET_ADAPTER_OFFLOAD_RX_CHECKSUM_CAPABILITIES *Capabilities,
[_In_] PFN_NET_ADAPTER_OFFLOAD_SET_RX_CHECKSUM EvtAdapterOffloadSetRxChecksum
);
View the official Windows Driver Kit DDI referenceNo description available.
The NET_ADAPTER_OFFLOAD_RX_CHECKSUM_CAPABILITIES_INIT function initializes a NET_ADAPTER_OFFLOAD_RX_CHECKSUM_CAPABILITIES structure.
Capabilities [_Out_]A pointer to a driver-allocated NET_ADAPTER_OFFLOAD_RX_CHECKSUM_CAPABILITIES structure.
EvtAdapterOffloadSetRxChecksum [_In_]A pointer to the client driver's implementation of the EVT_NET_ADAPTER_OFFLOAD_SET_RX_CHECKSUM callback function.
The client driver calls NET_ADAPTER_OFFLOAD_RX_CHECKSUM_CAPABILITIES_INIT to initialize a NET_ADAPTER_OFFLOAD_RX_CHECKSUM_CAPABILITIES structure. The driver passes the initialized NET_ADAPTER_OFFLOAD_RX_CHECKSUM_CAPABILITIES structure as a parameter to the NetAdapterOffloadSetRxChecksumCapabilities function to register it.
EVT_NET_ADAPTER_OFFLOAD_SET_RX_CHECKSUM
NET_ADAPTER_OFFLOAD_RX_CHECKSUM_CAPABILITIES
NetAdapterOffloadSetRxChecksumCapabilities