DEVICE_RESET_STATUS_FLAGS - NtDoc

Native API online documentation, based on the System Informer (formerly Process Hacker) phnt headers
// wdm.h

typedef union _DEVICE_RESET_STATUS_FLAGS {
  struct {
    ULONGLONG KeepStackReset : 1;
    ULONGLONG RecoveringFromBusError : 1;
    ULONGLONG Reserved : 62;
  } u;
  ULONGLONG AsUlonglong;
} DEVICE_RESET_STATUS_FLAGS, *PDEVICE_RESET_STATUS_FLAGS;
View the official Windows Driver Kit DDI reference

NtDoc

No description available.

Windows Driver Kit DDI reference (ns-wdm-device_reset_status_flags)

Description

This topic describes the DEVICE_RESET_STATUS_FLAGS union.

Members

u

Defines the u structure.

u.KeepStackReset

Defines the ULONGLONG member KeepStackReset.

u.RecoveringFromBusError

Defines the ULONGLONG member RecoveringFromBusError.

u.Reserved

Reserved for future use.

AsUlonglong

Defines the ULONGLONG member AsUlonglong.

Remarks

See also