struttura STOR_ADDRESS (scsi.h)

Struttura generale per contenere un indirizzo del dispositivo di archiviazione.

Sintassi

typedef struct _STOR_ADDRESS {
  USHORT Type;
  USHORT Port;
  ULONG  AddressLength;
  UCHAR  AddressData[ANYSIZE_ARRAY];
} STOR_ADDRESS, *PSTOR_ADDRESS;

Members

Type

Tipo di indirizzo. I possibili valori sono i seguenti:

Valore Significato
STOR_ADDRESS_TYPE_UNKNOWN
Il tipo di indirizzo è sconosciuto.
STOR_ADDRESS_TYPE_BTL8
L'indirizzo è un indirizzo LUN di destinazione del bus a 8 bit.

Port

Numero di porta dell'adattatore bus host (HBA).

AddressLength

Lunghezza in byte di AddressData. Se Type è impostato su STOR_ADDRESS_TYPE_BTL8, questo valore è STOR_ADDR_BTL8_ADDRESS_LENGTH.

AddressData[ANYSIZE_ARRAY]

Dati dell'indirizzo specifici di un tipo di indirizzo.

Requisiti

Requisito Valore
Client minimo supportato Disponibile a partire da Windows 8.
Intestazione scsi.h (include Storport.h, Scsi.h, Minitape.h)

Vedi anche

STOR_ADDR_BTL8

StorPortSetUnitAttributes