// mpiowmi.h
typedef struct _MPIO_DRIVE_INFO {
ULONG NumberPaths;
WCHAR Name[63 + 1];
WCHAR SerialNumber[63 + 1];
WCHAR DsmName[63 + 1];
} MPIO_DRIVE_INFO, *PMPIO_DRIVE_INFO;
View the official Windows Driver Kit DDI referenceNo description available.
The MPIO_DRIVE_INFO structure represents a multi-path disk in the system.
NumberPathsAn unsigned 32-bitfield that represents the number of paths to the LUN.
NameA string field (of maximum length 63 characters) that returns the device name that was created by MPIO for the LUN.
SerialNumberA string field (of maximum length 63 characters) that returns the serial number that was created for the LUN by either the DSM or by MPIO itself.
DsmNameA string field (of maximum length 63 characters) that returns the friendly name of the controlling DSM for the device.