// netadapter.h
typedef struct _NET_ADAPTER_DATAPATH_CALLBACKS {
ULONG Size;
PFN_NET_ADAPTER_CREATE_TXQUEUE EvtAdapterCreateTxQueue;
PFN_NET_ADAPTER_CREATE_RXQUEUE EvtAdapterCreateRxQueue;
} NET_ADAPTER_DATAPATH_CALLBACKS;
View the official Windows Driver Kit DDI referenceNo description available.
The NET_ADAPTER_DATAPATH_CALLBACKS structure describes a net adapter's callback functions for creating its datapath queues.
SizeThe size of this structure, in bytes.
EvtAdapterCreateTxQueueA pointer to the client driver's implementation of the EVT_NET_ADAPTER_CREATE_TXQUEUE callback function.
EvtAdapterCreateRxQueueA pointer to the client driver's implementation of the EVT_NET_ADAPTER_CREATE_RXQUEUE callback function.
Call NET_ADAPTER_DATAPATH_CALLBACKS_INIT to initialize this structure. An initialized NET_ADAPTER_DATAPATH_CALLBACKS structure is passed as a parameter to the NetAdapterInitSetDatapathCallbacks function.
NET_ADAPTER_DATAPATH_CALLBACKS_INIT
NetAdapterInitSetDatapathCallbacks