// ntddstor.h
typedef enum _STORAGE_STACK_TYPE {
StorageStackTypeUnknown,
StorageStackTypeScsi,
StorageStackTypeNVMe
} STORAGE_STACK_TYPE, *PSTORAGE_STACK_TYPE;
View the official Windows Driver Kit DDI referenceNo description available.
The STORAGE_STACK_TYPE enum indicates the storage stack type for the device, such as SCSI, NVMe, and so on.
StorageStackTypeUnknownSpecifies that the storage stack type is unknown.
StorageStackTypeScsiSpecifies that the storage stack type is SCSI.
StorageStackTypeNVMeSpecifies that the storage stack type is NVMe.