// ndkpi.h
typedef struct _NDK_CQ_DISPATCH {
  NDK_FN_CLOSE_OBJECT                    NdkCloseCq;
  NDK_FN_QUERY_EXTENSION_INTERFACE       NdkQueryExtension;
  NDK_FN_RESIZE_CQ                       NdkResizeCq;
  NDK_FN_ARM_CQ                          NdkArmCq;
  NDK_FN_GET_CQ_RESULTS                  NdkGetCqResults;
  NDK_FN_CONTROL_CQ_INTERRUPT_MODERATION NdkControlCqInterruptModeration;
  NDK_FN_GET_CQ_RESULTS_EX               NdkGetCqResultsEx;
} NDK_CQ_DISPATCH;
View the official Windows Driver Kit DDI referenceNo description available.
The NDK_CQ_DISPATCH structure specifies dispatch function entry points for the NDK completion queue (CQ) object.
NdkCloseCqThe 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.
NdkResizeCqThe entry point for the object's NDK_FN_RESIZE_CQ dispatch function.
NdkArmCqThe entry point for the object's NDK_FN_ARM_CQ dispatch function.
NdkGetCqResultsThe entry point for the object's NDK_FN_GET_CQ_RESULTS dispatch function.
NdkControlCqInterruptModerationThe entry point for the object's NDK_FN_CONTROL_CQ_INTERRUPT_MODERATION dispatch function.
NdkGetCqResultsExThe entry point for the object's NDK_FN_GET_CQ_RESULTS_EX dispatch function.
Note This member is supported only in NDKPI 1.2 (Windows Server 2012 R2) and later.
The NDK_CQ_DISPATCH structure is used in the NDK_CQ structure.
NDK_FN_CONTROL_CQ_INTERRUPT_MODERATION
NDK_FN_QUERY_EXTENSION_INTERFACE