// ndkpi.h
typedef struct _NDK_SHARED_ENDPOINT {
NDK_OBJECT_HEADER Header;
const NDK_SHARED_ENDPOINT_DISPATCH *Dispatch;
} NDK_SHARED_ENDPOINT;
View the official Windows Driver Kit DDI reference
No description available.
The NDK_SHARED_ENDPOINT structure specifies the attributes of an NDK shared endpoint object.
Header
The NDK_OBJECT_HEADER structure for the NDK_SHARED_ENDPOINT structure. Set the ObjectType member of the structure that Header specifies to NdkObjectTypeSharedEndpoint.
Dispatch
A pointer to an NDK_SHARED_ENDPOINT_DISPATCH structure that defines dispatch functions for the NDK shared endpoint object.
NDK provider must set the Dispatch member to its own NDK_SHARED_ENDPOINT_DISPATCH table before returning a newly created Shared Endpoint object and must NOT use the Dispatch member any more (because the NDK consumer is free to set the Dispatch member to some other value).
NDKPI Listeners, Connectors, and Endpoints