// 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 reference
No description available.
The NDK_SRQ_DISPATCH structure specifies dispatch function entry points for the NDK shared receive queue (SRQ) object.
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.
The NDK_SRQ_DISPATCH structure is used in the NDK_SRQ structure.
NDK_FN_QUERY_EXTENSION_INTERFACE