Compartir a través de


estructura STORAGE_READ_CAPACITY (ntddstor.h)

El STORAGE_READ_CAPACITY contiene la información de capacidad de lectura del disco devuelta desde una solicitud de IOCTL_STORAGE_READ_CAPACITY .

Sintaxis

typedef struct _STORAGE_READ_CAPACITY {
  ULONG         Version;
  ULONG         Size;
  ULONG         BlockLength;
  LARGE_INTEGER NumberOfBlocks;
  LARGE_INTEGER DiskLength;
} STORAGE_READ_CAPACITY, *PSTORAGE_READ_CAPACITY;

Miembros

Version

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

Size

Tamaño de esta estructura. Establézcalo en sizeof(STORAGE_READ_CAPACITY).

BlockLength

Número de bytes por bloque en disco.

NumberOfBlocks

Número total de bloques en el disco.

DiskLength

Tamaño total del disco en bytes.

Requisitos

Requisito Value
Cliente mínimo compatible Disponible a partir de Windows 8.
Encabezado ntddstor.h (incluya Ntddstor.h)

Consulte también

IOCTL_STORAGE_READ_CAPACITY