STORAGE_QUERY_TYPE (Enums)
Last changed: anonymous

.
Summary
Used by the STORAGE_PROPERTY_QUERY structure passed to the IOCTL_STORAGE_QUERY_PROPERTY control code to indicate what information is returned about a property of a storage device or adapter.

C# Definition:

enum STORAGE_QUERY_TYPE
{
    /// <summary>Instructs the driver to return an appropriate descriptor.</summary>
    PropertyStandardQuery = 0,
    /// <summary>Instructs the driver to report whether the descriptor is supported.</summary>
    PropertyExistsQuery = 1,
    /// <summary>Used to retrieve a mask of writeable fields in the descriptor. Not currently supported. Do not use.</summary>
    PropertyMaskQuery = 2,
    /// <summary>Specifies the upper limit of the list of query types. This is used to validate the query type.</summary>
    PropertyQueryMaxDefined = 3
}

VB Definition:

Enum STORAGE_QUERY_TYPE
   TODO
End Enum

Notes:

None.

Documentation