Compartir a través de


estructura DISK_DETECTION_INFO (ntdddisk.h)

La estructura DISK_DETECTION_INFO contiene los parámetros de unidad detectados proporcionados por un BIOS de PC x86 en el arranque.

Sintaxis

typedef struct _DISK_DETECTION_INFO {
  ULONG          SizeOfDetectInfo;
  DETECTION_TYPE DetectionType;
  union {
    struct {
      DISK_INT13_INFO    Int13;
      DISK_EX_INT13_INFO ExInt13;
    } DUMMYSTRUCTNAME;
  } DUMMYUNIONNAME;
} DISK_DETECTION_INFO, *PDISK_DETECTION_INFO;

Miembros

SizeOfDetectInfo

Contiene la cantidad, en bytes, de la información de detección recuperada.

DetectionType

Valor de DETECTION_TYPE que determina el tipo de formato utilizado por el BIOS para registrar la geometría del disco.

DUMMYUNIONNAME

DUMMYUNIONNAME.DUMMYSTRUCTNAME

DUMMYUNIONNAME.DUMMYSTRUCTNAME.Int13

Estructura de DISK_INT13_INFO cuando DetectionType es DetectInt13.

DUMMYUNIONNAME.DUMMYSTRUCTNAME.ExInt13

Estructura DISK_EX_INT13_INFO cuando DetectionType es DetectExInt13.

Requisitos

Requisito Valor
Header ntdddisk.h (incluya Ntdddisk.h, Ntddk.h, Ntdddisk.h)

Consulte también

DISK_EX_INT13_INFO

DISK_GEOMETRY_EX

DISK_INT13_INFO