STOR_ADDRESS - NtDoc

Native API online documentation, based on the System Informer (formerly Process Hacker) phnt headers
// 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

NtDoc

No description available.

Windows Driver Kit DDI reference (ns-minitape-_stor_address)

_STOR_ADDRESS structure (minitape.h)

Description

A general structure for holding a storage device address.

Members

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.

See also

STOR_ADDR_BTL8

StorPortSetUnitAttributes


Windows Driver Kit DDI reference (ns-scsi-_stor_address)

_STOR_ADDRESS structure (scsi.h)

Description

A general structure for holding a storage device address.

Members

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.

See also

STOR_ADDR_BTL8

StorPortSetUnitAttributes


Windows Driver Kit DDI reference (ns-storport-_stor_address)

_STOR_ADDRESS structure (storport.h)

Description

A general structure for holding a storage device address.

Members

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.

See also

STOR_ADDR_BTL8

StorPortSetUnitAttributes