// ndkpi.h
typedef struct _NDK_LISTENER {
NDK_OBJECT_HEADER Header;
const NDK_LISTENER_DISPATCH *Dispatch;
} NDK_LISTENER;
View the official Windows Driver Kit DDI reference
No description available.
The NDK_LISTENER structure specifies the attributes of an NDK listener object.
Header
The NDK_OBJECT_HEADER structure for the NDK_LISTENER structure. Set the ObjectType member of the structure that Header specifies to NdkObjectTypeListener.
Dispatch
A pointer to an NDK_LISTENER_DISPATCH structure that defines dispatch functions for the NDK listener object.
An NDK provider must set the Dispatch member to point to its NDK_LISTENER_DISPATCH table before returning the created listener object. Also, the NDK provider must not use the Dispatch member after setting it because the NDK consumer can change the Dispatch member to some other value.
NDKPI Listeners, Connectors, and Endpoints
NDKPI Object Lifetime Requirements