// ntddscsi.h
typedef enum _MP_STORAGE_DIAGNOSTIC_TARGET_TYPE {
MpStorageDiagnosticTargetTypeUndefined = 0,
MpStorageDiagnosticTargetTypeMiniport = 2,
MpStorageDiagnosticTargetTypeHbaFirmware,
MpStorageDiagnosticTargetTypeMax
} MP_STORAGE_DIAGNOSTIC_TARGET_TYPE, *PMP_STORAGE_DIAGNOSTIC_TARGET_TYPE;
View the official Windows Driver Kit DDI referenceNo description available.
The MP_STORAGE_DIAGNOSTIC_TARGET_TYPE enumeration specifies the target type of a storage diagnostic.
MpStorageDiagnosticTargetTypeUndefined:0The diagnostic target is undefined.
MpStorageDiagnosticTargetTypeMiniport:2The diagnostic target is a miniport driver.
MpStorageDiagnosticTargetTypeHbaFirmwareThe diagnostic target is an Hba Firmware driver.
MpStorageDiagnosticTargetTypeMaxMaximum allowed value for this enumeration.