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