// ntddstor.h
typedef enum _STORAGE_COMPONENT_HEALTH_STATUS {
HealthStatusUnknown,
HealthStatusNormal,
HealthStatusThrottled,
HealthStatusWarning,
HealthStatusDisabled,
HealthStatusFailed
} STORAGE_COMPONENT_HEALTH_STATUS, *PSTORAGE_COMPONENT_HEALTH_STATUS;
View the official Windows Driver Kit DDI reference
// winioctl.h
typedef enum _STORAGE_COMPONENT_HEALTH_STATUS {
HealthStatusUnknown = 0,
HealthStatusNormal,
HealthStatusThrottled,
HealthStatusWarning,
HealthStatusDisabled,
HealthStatusFailed
} STORAGE_COMPONENT_HEALTH_STATUS, *PSTORAGE_COMPONENT_HEALTH_STATUS;
View the official Win32 API reference
No description available.
Indicates the health status of a storage device.
HealthStatusUnknown
The storage device health status is unknown.
HealthStatusNormal
The storage device is operating normally.
HealthStatusThrottled
The storage device has been throttled.
HealthStatusWarning
The storage device has issued a warning.
HealthStatusDisabled
The storage device has been disabled.
HealthStatusFailed
The storage device has failed.
Specifies the health status of a storage component.
HealthStatusUnknown:0
HealthStatusNormal
HealthStatusThrottled
HealthStatusWarning
HealthStatusDisabled
HealthStatusFailed