// ndkpi.h
typedef struct _NDK_ADAPTER_DISPATCH {
NDK_FN_QUERY_EXTENSION_INTERFACE NdkQueryExtension;
NDK_FN_QUERY_ADAPTER_INFO NdkQueryAdapterInfo;
NDK_FN_CREATE_CQ NdkCreateCq;
NDK_FN_CREATE_PD NdkCreatePd;
NDK_FN_CREATE_SHARED_ENDPOINT NdkCreateSharedEndpoint;
NDK_FN_CREATE_CONNECTOR NdkCreateConnector;
NDK_FN_CREATE_LISTENER NdkCreateListener;
NDK_FN_BUILD_LAM NdkBuildLAM;
NDK_FN_RELEASE_LAM NdkReleaseLAM;
} NDK_ADAPTER_DISPATCH;
View the official Windows Driver Kit DDI referenceNo description available.
The NDK_ADAPTER_DISPATCH structure specifies dispatch function entry points for the NDK adapter object.
NdkQueryExtensionThe entry point for the object's NDK_FN_QUERY_EXTENSION_INTERFACE dispatch function.
NdkQueryAdapterInfoThe entry point for the object's NDK_FN_QUERY_ADAPTER_INFO dispatch function.
NdkCreateCqThe entry point for the object's NDK_FN_CREATE_CQ dispatch function.
NdkCreatePdThe entry point for the object's NDK_FN_CREATE_PD dispatch function.
NdkCreateSharedEndpointThe entry point for the object's NDK_FN_CREATE_SHARED_ENDPOINT dispatch function.
NdkCreateConnectorThe entry point for the object's NDK_FN_CREATE_CONNECTOR dispatch function.
NdkCreateListenerThe entry point for the object's NDK_FN_CREATE_LISTENER dispatch function.
NdkBuildLAMThe entry point for the object's NDK_FN_BUILD_LAM dispatch function.
NdkReleaseLAMThe entry point for the object's NDK_FN_RELEASE_LAM dispatch function.
The NDK_ADAPTER_DISPATCH structure is used in the NDK_ADAPTER structure.
NDK_FN_QUERY_EXTENSION_INTERFACE