// ntdddisk.h
typedef enum _DETECTION_TYPE {
DetectNone,
DetectInt13,
DetectExInt13
} DETECTION_TYPE;
View the official Windows Driver Kit DDI reference
No description available.
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.
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.
Possible formatting types are the standard INT 13h partition format or the extended INT 13h partition format.