structure STORAGE_PHYSICAL_TOPOLOGY_DESCRIPTOR (winioctl.h)
La structure STORAGE_PHYSICAL_TOPOLOGY_DESCRIPTOR est l’une des structures de résultats de requête retournées à partir d’une requête IOCTL_STORAGE_QUERY_PROPERTY. Cette structure décrit la topologie physique des périphériques de stockage.
Syntaxe
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;
Membres
Version
Contient la taille de cette structure, en octets. Défini sur sizeof(STORAGE_PHYSICAL_TOPOLOGY_DESCRIPTOR)
.
Size
Spécifie la taille totale des données, en octets. Doit être >= sizeof(STORAGE_PHYSICAL_TOPOLOGY_DESCRIPTOR)
.
NodeCount
Spécifie le nombre de nœuds.
Reserved
Réservé.
Node[ANYSIZE_ARRAY]
Nœud tel que spécifié par une structure de STORAGE_PHYSICAL_NODE_DATA .
Configuration requise
Condition requise | Valeur |
---|---|
Client minimal pris en charge | Windows 10 (applications de bureau uniquement) |
Serveur minimal pris en charge | Windows Server 2016 (applications de bureau uniquement) |
En-tête | winioctl.h (inclure Windows.h) |