// hbapiwmi.h
typedef struct _GetFcpPersistentBinding_OUT {
ULONG HBAStatus;
ULONG TotalEntryCount;
ULONG OutEntryCount;
HBAFCPBindingEntry Entry[1];
} GetFcpPersistentBinding_OUT, *PGetFcpPersistentBinding_OUT;
View the official Windows Driver Kit DDI referenceNo description available.
The GetFcpPersistentBinding_OUT structure is used to report the output parameter data of the GetFcpPersistentBinding WMI method to the WMI client.
HBAStatusContains the status of the operation. For a list of allowed values and their descriptions, see HBA_STATUS.
TotalEntryCountIndicates the total number of persistent bindings retrieved by the GetFcpPersistentBinding WMI method.
OutEntryCountIndicates the total number of mappings retrieved by the GetFcpTargetMapping WMI method. This value will be less than or equal to TotalEntryCount.
EntryContains an array of structures of type HBAFCPBindingEntry that describe an HBA's bindings between operating system and fibre channel protocol (FCP) identifiers.
The GetFcpPersistentBinding WMI method retrieves the bindings between SCSI and fibre channel protocol (FCP) identifiers for the logical units.
The WMI tool suite generates a declaration of the GetFcpPersistentBinding_OUT structure in Hbapiwmi.h when it compiles the MSFC_HBAFCPInfo WMI Class.