// ehstorioctl.h
typedef enum _PDO_CAPS {
PDO_CAPABILITY_UNDEFINED,
PDO_CAPABILITY_INC512_SET,
PDO_CAPABILITY_INC512_CLEAR
} PDO_CAPS;
View the official Windows Driver Kit DDI referenceNo description available.
This enumeration describes the capabilities of Physical Device Objects (PDOs).
PDO_CAPABILITY_UNDEFINEDCommand data block size granularity is undefined.
PDO_CAPABILITY_INC512_SETCommand data block size granularity of 512 bytes is supported.
PDO_CAPABILITY_INC512_CLEARCommand data block size granularity of 1 byte is supported.
A silo must support either PDO_CAPABILITY_INC512_SET or PDO_CAPABILITY_INC512_CLEAR. It may also indicate that both values are supported by returning a logical OR of these two bits.