Compartir a través de


estructura STORAGE_FRU_ID_DESCRIPTOR (ntddstor.h)

STORAGE_FRU_ID_DESCRIPTOR es la estructura que se usa cuando un llamador envía IOCTL_STORAGE_QUERY_PROPERTY para consultar el identificador de una unidad de reemplazo de errores (FRU).

Sintaxis

typedef struct _STORAGE_FRU_ID_DESCRIPTOR {
  ULONG Version;
  ULONG Size;
  ULONG IdentifierSize;
  UCHAR Identifier[ANYSIZE_ARRAY];
} STORAGE_FRU_ID_DESCRIPTOR, *PSTORAGE_FRU_ID_DESCRIPTOR;

Miembros

Version

Versión de esta estructura. Establézcalo en sizeof(STORAGE_FRU_ID_DESCRIPTOR).

Size

Tamaño de esta estructura, en bytes. Debe ser >= sizeof(STORAGE_FRU_ID_DESCRIPTOR).

IdentifierSize

Tamaño de la matriz en Identificador, en bytes.

Identifier[ANYSIZE_ARRAY]

Matriz en la que se va a escribir el identificador de FRU. El tamaño de esta matriz es IdentifierSize bytes.

Comentarios

STORAGE_FRU_ID_DESCRIPTOR se usa como el búfer de salida en el que se devuelve el resultado cuando un autor de la llamada envía IOCTL_STORAGE_QUERY_PROPERTY con un valor STORAGE_PROPERTY_ID de StorageFruIdProperty.

Requisitos

Requisito Valor
Header ntddstor.h

Consulte también

IOCTL_STORAGE_QUERY_PROPERTY

STORAGE_PROPERTY_ID

STORAGE_PROPERTY_QUERY

STORAGE_QUERY_TYPE