ホーム › System.Ioctl › STORAGE_QUERY_TYPE
STORAGE_QUERY_TYPE
列挙型メンバー 4
| 名前 | 10進 | 16進 | 説明 |
|---|---|---|---|
| PropertyStandardQuery | 0 | 0x0 | 適切な記述子を返すようにドライバーに指示します。 |
| PropertyExistsQuery | 1 | 0x1 | その記述子がサポートされているかどうかを報告するようにドライバーに指示します。 |
| PropertyMaskQuery | 2 | 0x2 | 現在はサポートされていません。使用しないでください。 |
| PropertyQueryMaxDefined | 3 | 0x3 | クエリの種類の一覧の上限を指定します。これはクエリの種類を検証するために使用されます。 |
公式ドキュメント
IOCTL_STORAGE_QUERY_PROPERTY 制御コードに渡される STORAGE_PROPERTY_QUERY 構造体で使用され、ストレージデバイスまたはアダプターのプロパティについてどのような情報を返すかを示します。
出典・ライセンス: 上記「公式ドキュメント」の内容は Microsoft の Win32 API ドキュメント(MicrosoftDocs/sdk-api)を日本語に翻訳・改変したものです。© Microsoft Corporation. CC BY 4.0 で提供。
Microsoft 公式リファレンス: 英語 (en-us) · 日本語 (ja-jp) · 原文ソース (GitHub)
Microsoft 公式リファレンス: 英語 (en-us) · 日本語 (ja-jp) · 原文ソース (GitHub)
各言語での定義
列挙メンバーの定義。HSP タブは #define global(値は16進)。
typedef enum STORAGE_QUERY_TYPE : int {
PropertyStandardQuery = 0,
PropertyExistsQuery = 1,
PropertyMaskQuery = 2,
PropertyQueryMaxDefined = 3
} STORAGE_QUERY_TYPE;public enum STORAGE_QUERY_TYPE : int
{
PropertyStandardQuery = 0,
PropertyExistsQuery = 1,
PropertyMaskQuery = 2,
PropertyQueryMaxDefined = 3,
}Public Enum STORAGE_QUERY_TYPE As Integer
PropertyStandardQuery = 0
PropertyExistsQuery = 1
PropertyMaskQuery = 2
PropertyQueryMaxDefined = 3
End Enumimport enum
class STORAGE_QUERY_TYPE(enum.IntEnum):
PropertyStandardQuery = 0
PropertyExistsQuery = 1
PropertyMaskQuery = 2
PropertyQueryMaxDefined = 3// STORAGE_QUERY_TYPE
pub const PropertyStandardQuery: i32 = 0;
pub const PropertyExistsQuery: i32 = 1;
pub const PropertyMaskQuery: i32 = 2;
pub const PropertyQueryMaxDefined: i32 = 3;// STORAGE_QUERY_TYPE
const (
PropertyStandardQuery int32 = 0
PropertyExistsQuery int32 = 1
PropertyMaskQuery int32 = 2
PropertyQueryMaxDefined int32 = 3
)const
PropertyStandardQuery = 0;
PropertyExistsQuery = 1;
PropertyMaskQuery = 2;
PropertyQueryMaxDefined = 3;// STORAGE_QUERY_TYPE
pub const PropertyStandardQuery: i32 = 0;
pub const PropertyExistsQuery: i32 = 1;
pub const PropertyMaskQuery: i32 = 2;
pub const PropertyQueryMaxDefined: i32 = 3;const
PropertyStandardQuery* = 0
PropertyExistsQuery* = 1
PropertyMaskQuery* = 2
PropertyQueryMaxDefined* = 3enum STORAGE_QUERY_TYPE : int {
PropertyStandardQuery = 0,
PropertyExistsQuery = 1,
PropertyMaskQuery = 2,
PropertyQueryMaxDefined = 3,
}#define global PropertyStandardQuery 0x0
#define global PropertyExistsQuery 0x1
#define global PropertyMaskQuery 0x2
#define global PropertyQueryMaxDefined 0x3