STORAGE_STACK_TYPE - NtDoc

Native API online documentation, based on the System Informer (formerly Process Hacker) phnt headers
// ntddstor.h

typedef enum _STORAGE_STACK_TYPE {
  StorageStackTypeUnknown,
  StorageStackTypeScsi,
  StorageStackTypeNVMe
} STORAGE_STACK_TYPE, *PSTORAGE_STACK_TYPE;

View the official Windows Driver Kit DDI reference

NtDoc

No description available.

Windows Driver Kit DDI reference (ne-ntddstor-storage_stack_type)

Description

The STORAGE_STACK_TYPE enum indicates the storage stack type for the device, such as SCSI, NVMe, and so on.

Constants

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.

Remarks

See also