NDK_SHARED_ENDPOINT structure (ndkpi.h)

The NDK_SHARED_ENDPOINT structure specifies the attributes of an NDK shared endpoint object.

Syntax

typedef struct _NDK_SHARED_ENDPOINT {
  NDK_OBJECT_HEADER                  Header;
  const NDK_SHARED_ENDPOINT_DISPATCH *Dispatch;
} NDK_SHARED_ENDPOINT;

Members

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.

Remarks

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).

Requirements

Requirement Value
Minimum supported client None supported,Supported in NDIS 6.30 and later.
Minimum supported server Windows ServerĀ 2012
Header ndkpi.h (include Ndkpi.h)

See also

NDKPI Listeners, Connectors, and Endpoints

NDK_FN_CLOSE_OBJECT

NDK_FN_CREATE_COMPLETION

NDK_FN_CREATE_SHARED_ENDPOINT

NDK_OBJECT_HEADER

NDK_SHARED_ENDPOINT_DISPATCH