NDK_SRQ_DISPATCH structure (ndkpi.h)

The NDK_SRQ_DISPATCH structure specifies dispatch function entry points for the NDK shared receive queue (SRQ) object.

Syntax

typedef struct _NDK_SRQ_DISPATCH {
  NDK_FN_CLOSE_OBJECT              NdkCloseSrq;
  NDK_FN_QUERY_EXTENSION_INTERFACE NdkQueryExtension;
  NDK_FN_MODIFY_SRQ                NdkModifySrq;
  NDK_FN_SRQ_RECEIVE               NdkSrqReceive;
} NDK_SRQ_DISPATCH;

Members

NdkCloseSrq

The entry point for the object's NDK_FN_CLOSE_OBJECT dispatch function.

NdkQueryExtension

The entry point for the object's NDK_FN_QUERY_EXTENSION_INTERFACE dispatch function.

NdkModifySrq

The entry point for the object's NDK_FN_MODIFY_SRQ dispatch function.

NdkSrqReceive

The entry point for the object's NDK_FN_SRQ_RECEIVE dispatch function.

Remarks

The NDK_SRQ_DISPATCH structure is used in the NDK_SRQ structure.

Requirements

Requirement Value
Minimum supported client None supported,Supported in NDIS 6.30 and later.
Minimum supported server Windows ServerĀ 2012
Header ndkpi.h (include Ndkpi.h)

See also

NDK_FN_CLOSE_OBJECT

NDK_FN_MODIFY_SRQ

NDK_FN_QUERY_EXTENSION_INTERFACE

NDK_FN_SRQ_RECEIVE

NDK_SRQ