PARTITION_INFORMATION_MBR structure (ntdddisk.h)

PARTITION_INFORMATION_MBR contains information for a Master Boot Record partition that is not held in common with a GUID Partition Table partition.

Syntax

typedef struct _PARTITION_INFORMATION_MBR {
  UCHAR   PartitionType;
  BOOLEAN BootIndicator;
  BOOLEAN RecognizedPartition;
  ULONG   HiddenSectors;
  GUID    PartitionId;
} PARTITION_INFORMATION_MBR, *PPARTITION_INFORMATION_MBR;

Members

PartitionType

Specifies the partition type. See PARTITION_INFORMATION for a list of system-defined partition types.

BootIndicator

Indicates, when TRUE, that the partition is bootable. When FALSE, the partition is not bootable.

RecognizedPartition

Indicates, when TRUE, that this is a partition with a recognized partition type. When FALSE this is a not a partition with a recognized partition.

HiddenSectors

Contains the number of hidden sectors in the partition.

PartitionId

Requirements

Requirement Value
Header ntdddisk.h (include Ntddk.h, Ntdddisk.h)

See also

IoReadPartitionTable

PARTITION_INFORMATION_EX

PARTITION_INFORMATION_GPT