ホーム › Storage.Vhd › APPLY_SNAPSHOT_VHDSET_FLAG
APPLY_SNAPSHOT_VHDSET_FLAG
列挙型フラグメンバー 2
| 名前 | 10進 | 16進 | 説明 |
|---|---|---|---|
| APPLY_SNAPSHOT_VHDSET_FLAG_NONE | 0 | 0x0 | フラグは指定されません。 |
| APPLY_SNAPSHOT_VHDSET_FLAG_WRITEABLE | 1 | 0x1 | 適用されるスナップショットが、書き込み可能なスナップショット型として作成されたことを示します。 |
公式ドキュメント
ApplySnapshotVhdSet 関数の動作に影響するフラグを含みます。
出典・ライセンス: 上記「公式ドキュメント」の内容は 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 APPLY_SNAPSHOT_VHDSET_FLAG : int {
APPLY_SNAPSHOT_VHDSET_FLAG_NONE = 0,
APPLY_SNAPSHOT_VHDSET_FLAG_WRITEABLE = 1
} APPLY_SNAPSHOT_VHDSET_FLAG;[Flags]
public enum APPLY_SNAPSHOT_VHDSET_FLAG : int
{
APPLY_SNAPSHOT_VHDSET_FLAG_NONE = 0,
APPLY_SNAPSHOT_VHDSET_FLAG_WRITEABLE = 1,
}<Flags>
Public Enum APPLY_SNAPSHOT_VHDSET_FLAG As Integer
APPLY_SNAPSHOT_VHDSET_FLAG_NONE = 0
APPLY_SNAPSHOT_VHDSET_FLAG_WRITEABLE = 1
End Enumimport enum
class APPLY_SNAPSHOT_VHDSET_FLAG(enum.IntFlag):
APPLY_SNAPSHOT_VHDSET_FLAG_NONE = 0
APPLY_SNAPSHOT_VHDSET_FLAG_WRITEABLE = 1// APPLY_SNAPSHOT_VHDSET_FLAG (flags)
pub const APPLY_SNAPSHOT_VHDSET_FLAG_NONE: i32 = 0;
pub const APPLY_SNAPSHOT_VHDSET_FLAG_WRITEABLE: i32 = 1;// APPLY_SNAPSHOT_VHDSET_FLAG
const (
APPLY_SNAPSHOT_VHDSET_FLAG_NONE int32 = 0
APPLY_SNAPSHOT_VHDSET_FLAG_WRITEABLE int32 = 1
)const
APPLY_SNAPSHOT_VHDSET_FLAG_NONE = 0;
APPLY_SNAPSHOT_VHDSET_FLAG_WRITEABLE = 1;// APPLY_SNAPSHOT_VHDSET_FLAG
pub const APPLY_SNAPSHOT_VHDSET_FLAG_NONE: i32 = 0;
pub const APPLY_SNAPSHOT_VHDSET_FLAG_WRITEABLE: i32 = 1;const
APPLY_SNAPSHOT_VHDSET_FLAG_NONE* = 0
APPLY_SNAPSHOT_VHDSET_FLAG_WRITEABLE* = 1enum APPLY_SNAPSHOT_VHDSET_FLAG : int {
APPLY_SNAPSHOT_VHDSET_FLAG_NONE = 0,
APPLY_SNAPSHOT_VHDSET_FLAG_WRITEABLE = 1,
}#define global APPLY_SNAPSHOT_VHDSET_FLAG_NONE 0x0
#define global APPLY_SNAPSHOT_VHDSET_FLAG_WRITEABLE 0x1
; ※フラグ列挙型。ビットORで組み合わせ可(例: FOO|BAR)。