// mpiowmi.h
typedef struct _MPIO_CONTROLLER_CONFIGURATION {
ULONG NumberControllers;
MPIO_CONTROLLER_INFO ControllerInfo[1];
} MPIO_CONTROLLER_CONFIGURATION, *PMPIO_CONTROLLER_CONFIGURATION;
View the official Windows Driver Kit DDI referenceNo description available.
The MPIO_CONTROLLER_CONFIGURATION structure provides a top-level view of the storage controllers and the targets that are connected to them in the system.
NumberControllersAn unsigned 32-bitfield that represents the total number of controllers on the system that are known to MPIO.
ControllerInfoAn array with information about all the controllers and all targets in the system. The number of elements of the array is given by NumberControllers and each element of the array is an instance of an MPIO_CONTROLLER_INFO structure.