// ndkpi.h
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;
View the official Windows Driver Kit DDI referenceNo description available.
The NDK_SRQ_DISPATCH structure specifies dispatch function entry points for the NDK shared receive queue (SRQ) object.
NdkCloseSrqThe entry point for the object's NDK_FN_CLOSE_OBJECT dispatch function.
NdkQueryExtensionThe entry point for the object's NDK_FN_QUERY_EXTENSION_INTERFACE dispatch function.
NdkModifySrqThe entry point for the object's NDK_FN_MODIFY_SRQ dispatch function.
NdkSrqReceiveThe entry point for the object's NDK_FN_SRQ_RECEIVE dispatch function.
The NDK_SRQ_DISPATCH structure is used in the NDK_SRQ structure.
NDK_FN_QUERY_EXTENSION_INTERFACE