estructura STORAGE_PHYSICAL_TOPOLOGY_DESCRIPTOR (ntddstor.h)
La estructura STORAGE_PHYSICAL_TOPOLOGY_DESCRIPTOR describe la topología física de un dispositivo o adaptador.
Sintaxis
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;
Miembros
Version
Versión de esta estructura, en bytes. El valor de este miembro cambiará a medida que se agreguen miembros a la estructura. Establezca en sizeof(STORAGE_PHYSICAL_TOPOLOGY_DESCRIPTOR).
Size
Tamaño total de los datos, en bytes, que pueden incluir datos que siguen a esta estructura. Debe ser >= sizeof(STORAGE_PHYSICAL_TOPOLOGY_DESCRIPTOR).
NodeCount
Número total de nodos de almacenamiento en el sistema.
Reserved
Reservado para uso futuro. No debe usarse.
Node[ANYSIZE_ARRAY]
Matriz de estructuras de STORAGE_PHYSICAL_NODE_DATA que describen los datos del dispositivo físico de cada nodo de almacenamiento. NodeCount determina el número de estructuras de la matriz.
Comentarios
La estructura STORAGE_PHYSICAL_TOPOLOGY_DESCRIPTOR se devuelve de una solicitud de IOCTL_STORAGE_QUERY_PROPERTY que tiene un PropertyId de StorageAdapterPhysicalTopologyProperty o StorageDevicePhysicalTopologyProperty.
Requisitos
Requisito | Valor |
---|---|
Header | ntddstor.h (incluya Ntddstor.h) |