// ndis.h
typedef struct _NDIS_PD_CLOSE_PROVIDER_PARAMETERS {
NDIS_OBJECT_HEADER Header;
ULONG Flags;
NDIS_PD_PROVIDER_HANDLE ProviderHandle;
} NDIS_PD_CLOSE_PROVIDER_PARAMETERS;
View the official Windows Driver Kit DDI referenceNo description available.
This structure represents the parameters that are used when calling the OID_PD_CLOSE_PROVIDER OID.
HeaderThe NDIS_OBJECT_HEADER structure for the NDIS_PD_CLOSE_PROVIDER_PARAMETERS structure. Set the members of this structure as follows:
FlagsThis member is reserved and must be set to 0.
ProviderHandleA provider handle that identifies the PD-capable miniport driver's provider object.
This structure must be aligned on an 8-byte boundary.