// 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 referenceNo description available.
This topic describes the DEVICE_RESET_STATUS_FLAGS union.
uDefines the u structure.
u.KeepStackResetDefines the ULONGLONG member KeepStackReset.
u.RecoveringFromBusErrorDefines the ULONGLONG member RecoveringFromBusError.
u.ReservedReserved for future use.
AsUlonglongDefines the ULONGLONG member AsUlonglong.