NDIS_MINIPORT_RESTART_PARAMETERS structure (ndis.h)

The NDIS_MINIPORT_RESTART_PARAMETERS structure defines the restart parameters for a miniport adapter.

Syntax

typedef struct _NDIS_MINIPORT_RESTART_PARAMETERS {
  NDIS_OBJECT_HEADER       Header;
  PNDIS_RESTART_ATTRIBUTES RestartAttributes;
  ULONG                    Flags;
} NDIS_MINIPORT_RESTART_PARAMETERS, *PNDIS_MINIPORT_RESTART_PARAMETERS;

Members

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.

Remarks

To define miniport adapter restart parameters, NDIS passes a pointer to an NDIS_MINIPORT_RESTART_PARAMETERS structure to the MiniportRestart function.

Requirements

Requirement Value
Minimum supported client Supported in NDIS 6.0 and later.
Header ndis.h (include Ndis.h)

See also

MiniportRestart

NDIS_OBJECT_HEADER

NDIS_RESTART_ATTRIBUTES