NDIS_MINIPORT_RESTART_PARAMETERS - NtDoc

Native API online documentation, based on the System Informer (formerly Process Hacker) phnt headers
// 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

NtDoc

No description available.

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

_NDIS_MINIPORT_RESTART_PARAMETERS structure

Description

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

Members

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.

See also

MiniportRestart

NDIS_OBJECT_HEADER

NDIS_RESTART_ATTRIBUTES