NDK_ADAPTER - NtDoc

Native API online documentation, based on the System Informer (formerly Process Hacker) phnt headers
// ndkpi.h

typedef struct _NDK_ADAPTER {
  NDK_OBJECT_HEADER          Header;
  const NDK_ADAPTER_DISPATCH *Dispatch;
} NDK_ADAPTER;

View the official Windows Driver Kit DDI reference

NtDoc

No description available.

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

_NDK_ADAPTER structure

Description

The NDK_ADAPTER structure specifies the attributes of an NDK adapter object.

Members

The NDK_OBJECT_HEADER structure for the NDK_ADAPTER structure. Set the ObjectType member of the structure that Header specifies to NdkObjectTypeAdapter.

Dispatch

A pointer to an NDK_ADAPTER_DISPATCH structure that defines dispatch functions for the NDK adapter object.

Remarks

The NDK_ADAPTER structure defines an adapter object. The OPEN_NDK_ADAPTER_HANDLER function opens an NDK adapter instance on an NDK-capable NDIS miniport adapter.

An NDK provider must set the Dispatch member to point to its NDK_ADAPTER_DISPATCH table before returning the created adapter 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.

See also

CLOSE_NDK_ADAPTER_HANDLER

NDKPI Object Lifetime Requirements

NDK_ADAPTER_DISPATCH

NDK_OBJECT_HEADER

OPEN_NDK_ADAPTER_HANDLER