NDK_PD_DISPATCH - NtDoc

Native API online documentation, based on the System Informer (formerly Process Hacker) phnt headers
// ndkpi.h

typedef struct _NDK_PD_DISPATCH {
  NDK_FN_CLOSE_OBJECT                       NdkClosePd;
  NDK_FN_QUERY_EXTENSION_INTERFACE          NdkQueryExtension;
  NDK_FN_CREATE_MR                          NdkCreateMr;
  NDK_FN_CREATE_MW                          NdkCreateMw;
  NDK_FN_CREATE_SRQ                         NdkCreateSrq;
  NDK_FN_CREATE_QP                          NdkCreateQp;
  NDK_FN_CREATE_QP_WITH_SRQ                 NdkCreateQpWithSrq;
  NDK_FN_GET_PRIVILEGED_MEMORY_REGION_TOKEN NdkGetPrivilegedMemoryRegionToken;
} NDK_PD_DISPATCH;

View the official Windows Driver Kit DDI reference

NtDoc

No description available.

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

_NDK_PD_DISPATCH structure

Description

The NDK_PD_DISPATCH structure specifies dispatch function entry points for the NDK protection domain (PD) object.

Members

NdkClosePd

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.

NdkCreateMr

The entry point for the object's NDK_FN_CREATE_MR dispatch function.

NdkCreateMw

The entry point for the object's NDK_FN_CREATE_MW dispatch function.

NdkCreateSrq

The entry point for the object's NDK_FN_CREATE_SRQ dispatch function.

NdkCreateQp

The entry point for the object's NDK_FN_CREATE_QP dispatch function.

NdkCreateQpWithSrq

The entry point for the object's NDK_FN_CREATE_QP_WITH_SRQ dispatch function.

NdkGetPrivilegedMemoryRegionToken

The entry point for the object's NDK_FN_GET_PRIVILEGED_MEMORY_REGION_TOKEN dispatch function.

Remarks

The NDK_PD_DISPATCH structure is used in the NDK_PD structure.

See also

NDK_FN_CLOSE_OBJECT

NDK_FN_CREATE_MR

NDK_FN_CREATE_MW

NDK_FN_CREATE_QP

NDK_FN_CREATE_QP_WITH_SRQ

NDK_FN_CREATE_SRQ

NDK_FN_GET_PRIVILEGED_MEMORY_REGION_TOKEN

NDK_FN_QUERY_EXTENSION_INTERFACE

NDK_PD