// ndkpi.h
typedef struct _NDK_LISTENER_DISPATCH {
  NDK_FN_CLOSE_OBJECT               NdkCloseListener;
  NDK_FN_QUERY_EXTENSION_INTERFACE  NdkQueryExtension;
  NDK_FN_LISTEN                     NdkListen;
  NDK_FN_GET_LISTENER_LOCAL_ADDRESS NdkGetLocalAddress;
  NDK_FN_CONTROL_CONNECT_EVENTS     NdkControlConnectEvents;
} NDK_LISTENER_DISPATCH;
View the official Windows Driver Kit DDI referenceNo description available.
The NDK_LISTENER_DISPATCH structure specifies dispatch function entry points for the NDK listener object.
NdkCloseListenerThe 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.
NdkListenThe entry point for the object's NDK_FN_LISTEN dispatch function.
NdkGetLocalAddressThe entry point for the object's NDK_FN_GET_LISTENER_LOCAL_ADDRESS dispatch function.
NdkControlConnectEventsThe entry point for the object's NDK_FN_CONTROL_CONNECT_EVENTS dispatch function.
The NDK_LISTENER_DISPATCH structure is used in the NDK_LISTENER structure.
NDK_FN_GET_LISTENER_LOCAL_ADDRESS
NDK_FN_QUERY_EXTENSION_INTERFACE