NDK_SHARED_ENDPOINT_DISPATCH - NtDoc

Native API online documentation, based on the System Informer (formerly Process Hacker) phnt headers
// 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 reference

NtDoc

No description available.

Windows Driver Kit DDI reference (ns-ndkpi-_ndk_shared_endpoint_dispatch)

_NDK_SHARED_ENDPOINT_DISPATCH structure

Description

The NDK_SHARED_ENDPOINT_DISPATCH structure specifies dispatch function entry points for the NDK shared endpoint object.

Members

NdkCloseSharedEndpoint

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.

NdkGetLocalAddress

The entry point for the object's NDK_FN_GET_SHARED_ENDPOINT_LOCAL_ADDRESS dispatch function.

Remarks

The NDK_SHARED_ENDPOINT_DISPATCH structure is used in the NDK_SHARED_ENDPOINT structure.

See also

NDK_FN_CLOSE_OBJECT

NDK_FN_GET_SHARED_ENDPOINT_LOCAL_ADDRESS

NDK_FN_QUERY_EXTENSION_INTERFACE

NDK_SHARED_ENDPOINT