estructura STORAGE_PHYSICAL_TOPOLOGY_DESCRIPTOR (winioctl.h)
La estructura STORAGE_PHYSICAL_TOPOLOGY_DESCRIPTOR es una de las estructuras de resultados de consulta devueltas desde una solicitud IOCTL_STORAGE_QUERY_PROPERTY. En esta estructura se describe la topología física del dispositivo de almacenamiento.
Sintaxis
typedef struct _STORAGE_PHYSICAL_TOPOLOGY_DESCRIPTOR {
DWORD Version;
DWORD Size;
DWORD NodeCount;
DWORD Reserved;
STORAGE_PHYSICAL_NODE_DATA Node[ANYSIZE_ARRAY];
} STORAGE_PHYSICAL_TOPOLOGY_DESCRIPTOR, *PSTORAGE_PHYSICAL_TOPOLOGY_DESCRIPTOR;
Miembros
Version
Contiene el tamaño de esta estructura, en bytes. Establézcalo en sizeof(STORAGE_PHYSICAL_TOPOLOGY_DESCRIPTOR)
.
Size
Especifica el tamaño total de los datos, en bytes. Debe ser >= sizeof(STORAGE_PHYSICAL_TOPOLOGY_DESCRIPTOR)
.
NodeCount
Especifica el número de nodos.
Reserved
Reservado.
Node[ANYSIZE_ARRAY]
Nodo especificado por una estructura de STORAGE_PHYSICAL_NODE_DATA .
Requisitos
Requisito | Value |
---|---|
Cliente mínimo compatible | Windows 10 [solo aplicaciones de escritorio] |
Servidor mínimo compatible | Windows Server 2016 [solo aplicaciones de escritorio] |
Encabezado | winioctl.h (incluya Windows.h) |