NDK_PD_DISPATCH structure (ndkpi.h)

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

Syntax

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;

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.

Requirements

Requirement Value
Minimum supported client None supported,Supported in NDIS 6.30 and later.
Minimum supported server Windows ServerĀ 2012
Header ndkpi.h (include Ndkpi.h)

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