estrutura STORAGE_FRU_ID_DESCRIPTOR (ntddstor.h)

STORAGE_FRU_ID_DESCRIPTOR é a estrutura usada quando um chamador envia IOCTL_STORAGE_QUERY_PROPERTY para consultar a ID de uma FRU (unidade de substituição de falha).

Sintaxe

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

Membros

Version

Versão dessa estrutura. Defina como sizeof(STORAGE_FRU_ID_DESCRIPTOR).

Size

Tamanho dessa estrutura, em bytes. Deve ser >= sizeof(STORAGE_FRU_ID_DESCRIPTOR).

IdentifierSize

Tamanho da matriz no Identificador, em bytes.

Identifier[ANYSIZE_ARRAY]

Matriz na qual gravar o identificador da FRU. O tamanho dessa matriz é IdentifierSize bytes.

Comentários

STORAGE_FRU_ID_DESCRIPTOR é usado como o buffer de saída no qual retornar o resultado quando um chamador envia IOCTL_STORAGE_QUERY_PROPERTY com um valor STORAGE_PROPERTY_ID de StorageFruIdProperty.

Requisitos

Requisito Valor
Cabeçalho ntddstor.h

Confira também

IOCTL_STORAGE_QUERY_PROPERTY

STORAGE_PROPERTY_ID

STORAGE_PROPERTY_QUERY

STORAGE_QUERY_TYPE