ホーム › System.Diagnostics.Etw › ETW_CONTEXT_REGISTER_TYPES
ETW_CONTEXT_REGISTER_TYPES
列挙型フラグメンバー 3
| 名前 | 10進 | 16進 |
|---|---|---|
| EtwContextRegisterTypeNone | 0 | 0x0 |
| EtwContextRegisterTypeControl | 1 | 0x1 |
| EtwContextRegisterTypeInteger | 2 | 0x2 |
各言語での定義
列挙メンバーの定義。HSP タブは #define global(値は16進)。
typedef enum ETW_CONTEXT_REGISTER_TYPES : int {
EtwContextRegisterTypeNone = 0,
EtwContextRegisterTypeControl = 1,
EtwContextRegisterTypeInteger = 2
} ETW_CONTEXT_REGISTER_TYPES;[Flags]
public enum ETW_CONTEXT_REGISTER_TYPES : int
{
EtwContextRegisterTypeNone = 0,
EtwContextRegisterTypeControl = 1,
EtwContextRegisterTypeInteger = 2,
}<Flags>
Public Enum ETW_CONTEXT_REGISTER_TYPES As Integer
EtwContextRegisterTypeNone = 0
EtwContextRegisterTypeControl = 1
EtwContextRegisterTypeInteger = 2
End Enumimport enum
class ETW_CONTEXT_REGISTER_TYPES(enum.IntFlag):
EtwContextRegisterTypeNone = 0
EtwContextRegisterTypeControl = 1
EtwContextRegisterTypeInteger = 2// ETW_CONTEXT_REGISTER_TYPES (flags)
pub const EtwContextRegisterTypeNone: i32 = 0;
pub const EtwContextRegisterTypeControl: i32 = 1;
pub const EtwContextRegisterTypeInteger: i32 = 2;// ETW_CONTEXT_REGISTER_TYPES
const (
EtwContextRegisterTypeNone int32 = 0
EtwContextRegisterTypeControl int32 = 1
EtwContextRegisterTypeInteger int32 = 2
)const
EtwContextRegisterTypeNone = 0;
EtwContextRegisterTypeControl = 1;
EtwContextRegisterTypeInteger = 2;// ETW_CONTEXT_REGISTER_TYPES
pub const EtwContextRegisterTypeNone: i32 = 0;
pub const EtwContextRegisterTypeControl: i32 = 1;
pub const EtwContextRegisterTypeInteger: i32 = 2;const
EtwContextRegisterTypeNone* = 0
EtwContextRegisterTypeControl* = 1
EtwContextRegisterTypeInteger* = 2enum ETW_CONTEXT_REGISTER_TYPES : int {
EtwContextRegisterTypeNone = 0,
EtwContextRegisterTypeControl = 1,
EtwContextRegisterTypeInteger = 2,
}#define global EtwContextRegisterTypeNone 0x0
#define global EtwContextRegisterTypeControl 0x1
#define global EtwContextRegisterTypeInteger 0x2
; ※フラグ列挙型。ビットORで組み合わせ可(例: FOO|BAR)。