NDIS_PD_OPEN_PROVIDER_PARAMETERS - NtDoc

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

typedef struct _NDIS_PD_OPEN_PROVIDER_PARAMETERS {
  NDIS_OBJECT_HEADER              Header;
  ULONG                           Flags;
  NDIS_PD_PROVIDER_HANDLE         ProviderHandle;
  const NDIS_PD_PROVIDER_DISPATCH *ProviderDispatch;
} NDIS_PD_OPEN_PROVIDER_PARAMETERS;
View the official Windows Driver Kit DDI reference

NtDoc

No description available.

Windows Driver Kit DDI reference (ns-ndis-_ndis_pd_open_provider_parameters)

_NDIS_PD_OPEN_PROVIDER_PARAMETERS structure

Description

This structure is used as a buffer for parameters in the OID_PD_OPEN_PROVIDER OID.

Members

The NDIS_OBJECT_HEADER structure for the NDIS_PD_OPEN_PROVIDER_PARAMETERS structure. Set the members of this structure as follows:

Flags

This member is reserved and must be 0.

ProviderHandle

A provider handle that identifies the PD-capable miniport driver's provider object.

ProviderDispatch

See NDIS_PD_PROVIDER_DISPATCH.

Remarks

This structure must be aligned on an 8-byte boundary.

See also

NDIS_OBJECT_HEADER