Win32 API 日本語リファレンス
ホームSystem.EventLog › EVT_CHANNEL_ISOLATION_TYPE

EVT_CHANNEL_ISOLATION_TYPE

列挙型
基底型i4

メンバー 3

名前10進16進
EvtChannelIsolationTypeApplication00x0
EvtChannelIsolationTypeSystem10x1
EvtChannelIsolationTypeCustom20x2

各言語での定義

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

typedef enum EVT_CHANNEL_ISOLATION_TYPE : int {
    EvtChannelIsolationTypeApplication = 0,
    EvtChannelIsolationTypeSystem = 1,
    EvtChannelIsolationTypeCustom = 2
} EVT_CHANNEL_ISOLATION_TYPE;
public enum EVT_CHANNEL_ISOLATION_TYPE : int
{
    EvtChannelIsolationTypeApplication = 0,
    EvtChannelIsolationTypeSystem = 1,
    EvtChannelIsolationTypeCustom = 2,
}
Public Enum EVT_CHANNEL_ISOLATION_TYPE As Integer
    EvtChannelIsolationTypeApplication = 0
    EvtChannelIsolationTypeSystem = 1
    EvtChannelIsolationTypeCustom = 2
End Enum
import enum

class EVT_CHANNEL_ISOLATION_TYPE(enum.IntEnum):
    EvtChannelIsolationTypeApplication = 0
    EvtChannelIsolationTypeSystem = 1
    EvtChannelIsolationTypeCustom = 2
// EVT_CHANNEL_ISOLATION_TYPE
pub const EvtChannelIsolationTypeApplication: i32 = 0;
pub const EvtChannelIsolationTypeSystem: i32 = 1;
pub const EvtChannelIsolationTypeCustom: i32 = 2;
// EVT_CHANNEL_ISOLATION_TYPE
const (
	EvtChannelIsolationTypeApplication int32 = 0
	EvtChannelIsolationTypeSystem int32 = 1
	EvtChannelIsolationTypeCustom int32 = 2
)
const
  EvtChannelIsolationTypeApplication = 0;
  EvtChannelIsolationTypeSystem = 1;
  EvtChannelIsolationTypeCustom = 2;
// EVT_CHANNEL_ISOLATION_TYPE
pub const EvtChannelIsolationTypeApplication: i32 = 0;
pub const EvtChannelIsolationTypeSystem: i32 = 1;
pub const EvtChannelIsolationTypeCustom: i32 = 2;
const
  EvtChannelIsolationTypeApplication* = 0
  EvtChannelIsolationTypeSystem* = 1
  EvtChannelIsolationTypeCustom* = 2
enum EVT_CHANNEL_ISOLATION_TYPE : int {
    EvtChannelIsolationTypeApplication = 0,
    EvtChannelIsolationTypeSystem = 1,
    EvtChannelIsolationTypeCustom = 2,
}
#define global EvtChannelIsolationTypeApplication 0x0
#define global EvtChannelIsolationTypeSystem      0x1
#define global EvtChannelIsolationTypeCustom      0x2