NDK_SRQ_DISPATCH - NtDoc

Native API online documentation, based on the System Informer (formerly Process Hacker) phnt headers
// 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

NtDoc

No description available.

Windows Driver Kit DDI reference (ns-ndkpi-_ndk_srq_dispatch)

_NDK_SRQ_DISPATCH structure

Description

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

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.

See also

NDK_FN_CLOSE_OBJECT

NDK_FN_MODIFY_SRQ

NDK_FN_QUERY_EXTENSION_INTERFACE

NDK_FN_SRQ_RECEIVE

NDK_SRQ