// ndkpi.h
typedef struct _NDK_CONNECTOR_DISPATCH {
  NDK_FN_CLOSE_OBJECT                 NdkCloseConnector;
  NDK_FN_QUERY_EXTENSION_INTERFACE    NdkQueryExtension;
  NDK_FN_CONNECT                      NdkConnect;
  NDK_FN_CONNECT_WITH_SHARED_ENDPOINT NdkConnectWithSharedEndpoint;
  NDK_FN_COMPLETE_CONNECT             NdkCompleteConnect;
  NDK_FN_ACCEPT                       NdkAccept;
  NDK_FN_REJECT                       NdkReject;
  NDK_FN_GET_CONNECTION_DATA          NdkGetConnectionData;
  NDK_FN_GET_LOCAL_ADDRESS            NdkGetLocalAddress;
  NDK_FN_GET_PEER_ADDRESS             NdkGetPeerAddress;
  NDK_FN_DISCONNECT                   NdkDisconnect;
  NDK_FN_COMPLETE_CONNECT_EX          NdkCompleteConnectEx;
  NDK_FN_ACCEPT_EX                    NdkAcceptEx;
} NDK_CONNECTOR_DISPATCH;
View the official Windows Driver Kit DDI referenceNo description available.
The NDK_CONNECTOR_DISPATCH structure specifies dispatch function entry points for the NDK connector object.
NdkCloseConnectorThe 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.
NdkConnectThe entry point for the object's NDK_FN_CONNECT dispatch function.
NdkConnectWithSharedEndpointThe entry point for the object's NDK_FN_CONNECT_WITH_SHARED_ENDPOINT dispatch function.
NdkCompleteConnectThe entry point for the object's NDK_FN_COMPLETE_CONNECT dispatch function.
NdkAcceptThe entry point for the object's NDK_FN_ACCEPT dispatch function.
NdkRejectThe entry point for the object's NDK_FN_REJECT dispatch function.
NdkGetConnectionDataThe entry point for the object's NDK_FN_GET_CONNECTION_DATA dispatch function.
NdkGetLocalAddressThe entry point for the object's NDK_FN_GET_LOCAL_ADDRESS dispatch function.
NdkGetPeerAddressThe entry point for the object's NDK_FN_GET_PEER_ADDRESS dispatch function.
NdkDisconnectThe entry point for the object's NDK_FN_DISCONNECT dispatch function.
NdkCompleteConnectExThe entry point for the object's NDK_FN_COMPLETE_CONNECT_EX dispatch function.
NdkAcceptExThe entry point for the object's NDK_FN_ACCEPT_EX dispatch function.
The NDK_CONNECTOR_DISPATCH structure is used in the NDK_CONNECTOR structure.
NDK_FN_CONNECT_WITH_SHARED_ENDPOINT
NDK_FN_QUERY_EXTENSION_INTERFACE