// storport.h
ULONG StorPortGetActiveNodeCount(
[in] PVOID HwDeviceExtension,
[out] PULONG NumberNodes
);
View the official Windows Driver Kit DDI referenceNo description available.
The StorPortGetActiveNodeCount routine returns the number of nodes that are present in the system.
HwDeviceExtension [in]A pointer to the hardware device extension for the host bus adapter (HBA).
NumberNodes [out]A pointer to a variable that holds the number of nodes.
The StorPortGetActiveNodeCountroutine returns one of the following status codes:
| Return code | Description |
|---|---|
| STOR_STATUS_NOT_IMPLEMENTED | This function is not implemented on the active operating system. |
| STOR_STATUS_SUCCESS | The operation was successful. |
| STOR_STATUS_INVALID_PARAMETER | The operation fails with this return value if one or more of the parameters are invalid, for example, if NumberNodes is set to NULL. |