// ndkpi.h
typedef struct _NDK_EXTENSION_INTERFACE {
const VOID *Dispatch;
} NDK_EXTENSION_INTERFACE;
View the official Windows Driver Kit DDI reference
No description available.
The NDK_EXTENSION_INTERFACE structure specifies dispatch function entry points for an NDK extension interface.
Dispatch
An entry point for an extension interface dispatch function.
An extension interface is identified by a GUID and represented as a pointer to an NDK_EXTENSION_INTERFACE function dispatch table.
Each NDK object contains a NDK_FN_QUERY_EXTENSION_INTERFACE function pointer in its object type-specific function dispatch table. This function allows a driver to query the extended interfaces the object type supports.
Tip There are currently no standard extension interfaces defined.
NDK_FN_QUERY_EXTENSION_INTERFACE