ホーム › 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 |
各言語での定義
列挙メンバーの定義。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)。