The CLUS_SCSI_ADDRESS structure contains address data. The CLUS_SCSI_ADDRESS structure is defined in CLUSAPI.H.
typedef struct _CLUS_SCSI_ADDRESS {
    union {
        struct {
            UCHAR PortNumber;
            UCHAR PathId;
            UCHAR TargetId;
            UCHAR Lun;
        };
        DWORD   dw;
    };
} CLUS_SCSI_ADDRESS, *PCLUS_SCSI_ADDRESS;
 A CLUS_SCSI_ADDRESS structure is the data member of a CLUSPROP_SCSI_ADDRESS structure.
A CLUS_SCSI_ADDRESS structure can also be returned by ClusterResourceControl when the dwControlCode parameter is set to CLUSCTL_RESOURCE_STORAGE_GET_DISK_INFO, and by ClusterResourceTypeControl when dwControlCode is set to CLUSCTL_RESOURCE_TYPE_STORAGE_GET_AVAILABLE_DISKS.
Because the CLUS_SCSI_ADDRESS structure describes data rather than a value, it does not include a value header.
  Version: Use Windows NT Server Enterprise Edition 4.0.
  Windows CE: Unsupported.
  Header: Declared in clusapi.h.