NDK_MW - NtDoc

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

typedef struct _NDK_MW {
  NDK_OBJECT_HEADER     Header;
  const NDK_MW_DISPATCH *Dispatch;
} NDK_MW;

View the official Windows Driver Kit DDI reference

NtDoc

No description available.

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

_NDK_MW structure

Description

The NDK_MW structure specifies the attributes of an NDK memory window (MW) object.

Members

The NDK_OBJECT_HEADER structure for the NDK_MW structure. Set the ObjectType member of the structure that Header specifies to NdkObjectTypeMw.

Dispatch

A pointer to an NDK_MW_DISPATCH structure that defines dispatch functions for the NDK MW object.

Remarks

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

NDKPI Object Lifetime Requirements

NDK_FN_CLOSE_OBJECT

NDK_FN_CREATE_COMPLETION

NDK_FN_CREATE_MW

NDK_MW_DISPATCH

NDK_OBJECT_HEADER