// ndis.h
typedef struct _NDIS_MINIPORT_RESTART_PARAMETERS {
NDIS_OBJECT_HEADER Header;
PNDIS_RESTART_ATTRIBUTES RestartAttributes;
ULONG Flags;
} NDIS_MINIPORT_RESTART_PARAMETERS, *PNDIS_MINIPORT_RESTART_PARAMETERS;
View the official Windows Driver Kit DDI reference
No description available.
The NDIS_MINIPORT_RESTART_PARAMETERS structure defines the restart parameters for a miniport adapter.
Header
The NDIS_OBJECT_HEADER structure for the NDIS_MINIPORT_RESTART_PARAMETERS structure. NDIS sets the Type member of the structure that Header specified to NDIS_OBJECT_TYPE_DEFAULT, the Revision member to NDIS_MINIPORT_RESTART_PARAMETERS_REVISION_1, and the Size member to NDIS_SIZEOF_MINIPORT_RESTART_PARAMETERS_REVISION_1.
RestartAttributes
A pointer to an NDIS_RESTART_ATTRIBUTES structure.
Flags
Reserved.
To define miniport adapter restart parameters, NDIS passes a pointer to an NDIS_MINIPORT_RESTART_PARAMETERS structure to the MiniportRestart function.