DETECTION_TYPE - NtDoc

Native API online documentation, based on the System Informer (formerly Process Hacker) phnt headers
// ntdddisk.h

typedef enum _DETECTION_TYPE {
  DetectNone,
  DetectInt13,
  DetectExInt13
} DETECTION_TYPE;

View the official Windows Driver Kit DDI reference

NtDoc

No description available.

Windows Driver Kit DDI reference (ne-ntdddisk-_detection_type)

DETECTION_TYPE enumeration

Description

The DETECTION_TYPE enumeration type is used in conjunction with the IOCTL_DISK_GET_DRIVE_GEOMETRY_EX request and the DISK_GEOMETRY_EX structure to determine the type of formatting used by the BIOS to record the disk geometry.

Constants

DetectNone

Indicates that the disk contains neither an INT 13h partition nor an extended INT 13h partition.

DetectInt13

Indicates that the disk has a standard INT 13h partition.

DetectExInt13

Indicates that the disk contains an extended INT 13h partition.

Remarks

Possible formatting types are the standard INT 13h partition format or the extended INT 13h partition format.

See also

DISK_DETECTION_INFO