Condividi tramite


struttura STORAGE_PHYSICAL_TOPOLOGY_DESCRIPTOR (ntddstor.h)

La struttura STORAGE_PHYSICAL_TOPOLOGY_DESCRIPTOR descrive la topologia fisica di un dispositivo o di una scheda.

Sintassi

typedef struct _STORAGE_PHYSICAL_TOPOLOGY_DESCRIPTOR {
  ULONG                      Version;
  ULONG                      Size;
  ULONG                      NodeCount;
  ULONG                      Reserved;
  STORAGE_PHYSICAL_NODE_DATA Node[ANYSIZE_ARRAY];
} STORAGE_PHYSICAL_TOPOLOGY_DESCRIPTOR, *PSTORAGE_PHYSICAL_TOPOLOGY_DESCRIPTOR;

Members

Version

Versione di questa struttura, in byte. Il valore di questo membro verrà modificato man mano che i membri vengono aggiunti alla struttura. Impostare su sizeof(STORAGE_PHYSICAL_TOPOLOGY_DESCRIPTOR).

Size

Dimensioni totali dei dati, in byte, che possono includere dati che seguono questa struttura. Deve essere >= sizeof(STORAGE_PHYSICAL_TOPOLOGY_DESCRIPTOR).

NodeCount

Numero totale di nodi di archiviazione nel sistema.

Reserved

Riservato per utilizzi futuri. Non usare.

Node[ANYSIZE_ARRAY]

Matrice di strutture STORAGE_PHYSICAL_NODE_DATA che descrivono i dati dei dispositivi fisici di ogni nodo di archiviazione. Il numero di strutture nella matrice è determinato da NodeCount.

Commenti

La struttura STORAGE_PHYSICAL_TOPOLOGY_DESCRIPTOR viene restituita da una richiesta IOCTL_STORAGE_QUERY_PROPERTY con propertyid di StorageAdapterPhysicalTopologyProperty o StorageDevicePhysicalTopologyProperty.

Requisiti

Requisito Valore
Intestazione ntddstor.h (include Ntddstor.h)

Vedi anche

IOCTL_STORAGE_QUERY_PROPERTY

STORAGE_PHYSICAL_NODE_DATA