Win32 API 日本語リファレンス
ホームSystem.Diagnostics.Etw › ETW_CONTEXT_REGISTER_TYPES

ETW_CONTEXT_REGISTER_TYPES

列挙型フラグ
基底型i4

メンバー 3

名前10進16進
EtwContextRegisterTypeNone00x0
EtwContextRegisterTypeControl10x1
EtwContextRegisterTypeInteger20x2

各言語での定義

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