NET_ADAPTER_DATAPATH_CALLBACKS_INIT - NtDoc

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

void NET_ADAPTER_DATAPATH_CALLBACKS_INIT(
  [_Out_] NET_ADAPTER_DATAPATH_CALLBACKS *DatapathCallbacks,
  [_In_]  PFN_NET_ADAPTER_CREATE_TXQUEUE EvtAdapterCreateTxQueue,
  [_In_]  PFN_NET_ADAPTER_CREATE_RXQUEUE EvtAdapterCreateRxQueue
);
View the official Windows Driver Kit DDI reference

NtDoc

No description available.

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

NET_ADAPTER_DATAPATH_CALLBACKS_INIT function

Description

The NET_ADAPTER_DATAPATH_CALLBACKS_INIT function initializes a NET_ADAPTER_DATAPATH_CALLBACKS structure.

Parameters

DatapathCallbacks [_Out_]

A pointer to a driver-allocated NET_ADAPTER_DATAPATH_CALLBACKS structure.

EvtAdapterCreateTxQueue [_In_]

A pointer to the client driver's implementation of the EVT_NET_ADAPTER_CREATE_TXQUEUE callback function.

EvtAdapterCreateRxQueue [_In_]

A pointer to the client driver's implementation of the EVT_NET_ADAPTER_CREATE_RXQUEUE callback function.

Remarks

Call this function to initialize the NET_ADAPTER_DATAPATH_CALLBACKS structure before calling NetAdapterInitSetDatapathCallbacks.

See also

NET_ADAPTER_DATAPATH_CALLBACKS

NetAdapterInitSetDatapathCallbacks