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

EVENT_FIELD_TYPE

列挙型
基底型i4

メンバー 6

名前10進16進
EventKeywordInformation00x0
EventLevelInformation10x1
EventChannelInformation20x2
EventTaskInformation30x3
EventOpcodeInformation40x4
EventInformationMax50x5

各言語での定義

列挙メンバーの定義。HSP タブは #define global(値は16進)。

typedef enum EVENT_FIELD_TYPE : int {
    EventKeywordInformation = 0,
    EventLevelInformation = 1,
    EventChannelInformation = 2,
    EventTaskInformation = 3,
    EventOpcodeInformation = 4,
    EventInformationMax = 5
} EVENT_FIELD_TYPE;
public enum EVENT_FIELD_TYPE : int
{
    EventKeywordInformation = 0,
    EventLevelInformation = 1,
    EventChannelInformation = 2,
    EventTaskInformation = 3,
    EventOpcodeInformation = 4,
    EventInformationMax = 5,
}
Public Enum EVENT_FIELD_TYPE As Integer
    EventKeywordInformation = 0
    EventLevelInformation = 1
    EventChannelInformation = 2
    EventTaskInformation = 3
    EventOpcodeInformation = 4
    EventInformationMax = 5
End Enum
import enum

class EVENT_FIELD_TYPE(enum.IntEnum):
    EventKeywordInformation = 0
    EventLevelInformation = 1
    EventChannelInformation = 2
    EventTaskInformation = 3
    EventOpcodeInformation = 4
    EventInformationMax = 5
// EVENT_FIELD_TYPE
pub const EventKeywordInformation: i32 = 0;
pub const EventLevelInformation: i32 = 1;
pub const EventChannelInformation: i32 = 2;
pub const EventTaskInformation: i32 = 3;
pub const EventOpcodeInformation: i32 = 4;
pub const EventInformationMax: i32 = 5;
// EVENT_FIELD_TYPE
const (
	EventKeywordInformation int32 = 0
	EventLevelInformation int32 = 1
	EventChannelInformation int32 = 2
	EventTaskInformation int32 = 3
	EventOpcodeInformation int32 = 4
	EventInformationMax int32 = 5
)
const
  EventKeywordInformation = 0;
  EventLevelInformation = 1;
  EventChannelInformation = 2;
  EventTaskInformation = 3;
  EventOpcodeInformation = 4;
  EventInformationMax = 5;
// EVENT_FIELD_TYPE
pub const EventKeywordInformation: i32 = 0;
pub const EventLevelInformation: i32 = 1;
pub const EventChannelInformation: i32 = 2;
pub const EventTaskInformation: i32 = 3;
pub const EventOpcodeInformation: i32 = 4;
pub const EventInformationMax: i32 = 5;
const
  EventKeywordInformation* = 0
  EventLevelInformation* = 1
  EventChannelInformation* = 2
  EventTaskInformation* = 3
  EventOpcodeInformation* = 4
  EventInformationMax* = 5
enum EVENT_FIELD_TYPE : int {
    EventKeywordInformation = 0,
    EventLevelInformation = 1,
    EventChannelInformation = 2,
    EventTaskInformation = 3,
    EventOpcodeInformation = 4,
    EventInformationMax = 5,
}
#define global EventKeywordInformation 0x0
#define global EventLevelInformation   0x1
#define global EventChannelInformation 0x2
#define global EventTaskInformation    0x3
#define global EventOpcodeInformation  0x4
#define global EventInformationMax     0x5