// minitape.h
typedef struct _STOR_ADDRESS {
USHORT Type;
USHORT Port;
ULONG AddressLength;
UCHAR AddressData[ANYSIZE_ARRAY];
} STOR_ADDRESS, *PSTOR_ADDRESS;
View the official Windows Driver Kit DDI reference
// scsi.h
typedef struct _STOR_ADDRESS {
USHORT Type;
USHORT Port;
ULONG AddressLength;
UCHAR AddressData[ANYSIZE_ARRAY];
} STOR_ADDRESS, *PSTOR_ADDRESS;
View the official Windows Driver Kit DDI reference
// storport.h
typedef struct _STOR_ADDRESS {
USHORT Type;
USHORT Port;
ULONG AddressLength;
UCHAR AddressData[ANYSIZE_ARRAY];
} STOR_ADDRESS, *PSTOR_ADDRESS;
View the official Windows Driver Kit DDI reference
No description available.
A general structure for holding a storage device address.
Type
The address type. This can be one of the following:
Value | Meaning |
---|---|
STOR_ADDRESS_TYPE_UNKNOWN | The address type is unknown. |
STOR_ADDRESS_TYPE_BTL8 | The address is an 8-bit Bus-Target-LUN address. |
Port
The host bus adapter (HBA) port number.
AddressLength
The byte length of the AddressData. If Type is set to STOR_ADDRESS_TYPE_BTL8, this value is STOR_ADDR_BTL8_ADDRESS_LENGTH.
AddressData
The address data specific to an address type.
A general structure for holding a storage device address.
Type
The address type. This can be one of the following:
Value | Meaning |
---|---|
STOR_ADDRESS_TYPE_UNKNOWN | The address type is unknown. |
STOR_ADDRESS_TYPE_BTL8 | The address is an 8-bit Bus-Target-LUN address. |
Port
The host bus adapter (HBA) port number.
AddressLength
The byte length of the AddressData. If Type is set to STOR_ADDRESS_TYPE_BTL8, this value is STOR_ADDR_BTL8_ADDRESS_LENGTH.
AddressData
The address data specific to an address type.
A general structure for holding a storage device address.
Type
The address type. This can be one of the following:
Value | Meaning |
---|---|
STOR_ADDRESS_TYPE_UNKNOWN | The address type is unknown. |
STOR_ADDRESS_TYPE_BTL8 | The address is an 8-bit Bus-Target-LUN address. |
Port
The host bus adapter (HBA) port number.
AddressLength
The byte length of the AddressData. If Type is set to STOR_ADDRESS_TYPE_BTL8, this value is STOR_ADDR_BTL8_ADDRESS_LENGTH.
AddressData
The address data specific to an address type.