// ndkpi.h
typedef struct _NDK_SHARED_ENDPOINT_DISPATCH {
  NDK_FN_CLOSE_OBJECT                      NdkCloseSharedEndpoint;
  NDK_FN_QUERY_EXTENSION_INTERFACE         NdkQueryExtension;
  NDK_FN_GET_SHARED_ENDPOINT_LOCAL_ADDRESS NdkGetLocalAddress;
} NDK_SHARED_ENDPOINT_DISPATCH;
View the official Windows Driver Kit DDI referenceNo description available.
The NDK_SHARED_ENDPOINT_DISPATCH structure specifies dispatch function entry points for the NDK shared endpoint object.
NdkCloseSharedEndpointThe 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.
NdkGetLocalAddressThe entry point for the object's NDK_FN_GET_SHARED_ENDPOINT_LOCAL_ADDRESS dispatch function.
The NDK_SHARED_ENDPOINT_DISPATCH structure is used in the NDK_SHARED_ENDPOINT structure.
NDK_FN_GET_SHARED_ENDPOINT_LOCAL_ADDRESS
NDK_FN_QUERY_EXTENSION_INTERFACE