// ndkpi.h
typedef struct _NDK_QP_DISPATCH {
NDK_FN_CLOSE_OBJECT NdkCloseQp;
NDK_FN_QUERY_EXTENSION_INTERFACE NdkQueryExtension;
NDK_FN_FLUSH NdkFlush;
NDK_FN_SEND NdkSend;
NDK_FN_RECEIVE NdkReceive;
NDK_FN_BIND NdkBind;
NDK_FN_FAST_REGISTER NdkFastRegister;
NDK_FN_INVALIDATE NdkInvalidate;
NDK_FN_READ NdkRead;
NDK_FN_WRITE NdkWrite;
NDK_FN_SEND_AND_INVALIDATE NdkSendAndInvalidate;
} NDK_QP_DISPATCH;
View the official Windows Driver Kit DDI reference
No description available.
The NDK_QP_DISPATCH structure specifies dispatch function entry points for the NDK queue pair (QP) object.
NdkCloseQp
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.
NdkFlush
The entry point for the object's NDK_FN_FLUSH dispatch function.
NdkSend
The entry point for the object's NDK_FN_SEND dispatch function.
NdkReceive
The entry point for the object's NDK_FN_RECEIVE dispatch function.
NdkBind
The entry point for the object's NDK_FN_BIND dispatch function.
NdkFastRegister
The entry point for the object's NDK_FN_FAST_REGISTER dispatch function.
NdkInvalidate
The entry point for the object's NDK_FN_INVALIDATE dispatch function.
NdkRead
The entry point for the object's NDK_FN_READ dispatch function.
NdkWrite
The entry point for the object's NDK_FN_WRITE dispatch function.
NdkSendAndInvalidate
The entry point for the object's NDK_FN_SEND_AND_INVALIDATE dispatch function.
Note This member is supported only in NDKPI 1.2 (Windows Server 2012 R2) and later.
The NDK_QP_DISPATCH structure is used in the NDK_QP structure.
NDK_FN_QUERY_EXTENSION_INTERFACE