Win32 API 日本語リファレンス
ホームStorage.Vhd › APPLY_SNAPSHOT_VHDSET_FLAG

APPLY_SNAPSHOT_VHDSET_FLAG

列挙型フラグ
基底型i4

メンバー 2

名前10進16進
APPLY_SNAPSHOT_VHDSET_FLAG_NONE00x0
APPLY_SNAPSHOT_VHDSET_FLAG_WRITEABLE10x1

各言語での定義

列挙メンバーの定義。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 Enum
import 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* = 1
enum 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)。