// 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 referenceNo description available.
This structure is used as a buffer for parameters in the OID_PD_OPEN_PROVIDER OID.
HeaderThe NDIS_OBJECT_HEADER structure for the NDIS_PD_OPEN_PROVIDER_PARAMETERS structure. Set the members of this structure as follows:
FlagsThis member is reserved and must be 0.
ProviderHandleA provider handle that identifies the PD-capable miniport driver's provider object.
ProviderDispatchSee NDIS_PD_PROVIDER_DISPATCH.
This structure must be aligned on an 8-byte boundary.