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

EVT_CHANNEL_ISOLATION_TYPE

列挙型
基底型i4

メンバー 3

名前10進16進説明
EvtChannelIsolationTypeApplication00x0チャネルへのオープンなアクセスを提供します。
EvtChannelIsolationTypeSystem10x1チャネルへの制限付きアクセスを提供します。システム サービス アカウントで実行されるアプリケーションやドライバー、またはコンピューターの正常性に関連するイベントをログに記録するアプリケーションで使用されます。
EvtChannelIsolationTypeCustom20x2チャネルへのカスタム アクセスを提供します。

公式ドキュメント

チャネルに適用する既定のアクセス許可を定義します。

出典・ライセンス: 上記「公式ドキュメント」の内容は Microsoft の Win32 API ドキュメント(MicrosoftDocs/sdk-api)を日本語に翻訳・改変したものです。© Microsoft Corporation. CC BY 4.0 で提供。
Microsoft 公式リファレンス: 英語 (en-us) · 日本語 (ja-jp) · 原文ソース (GitHub)

各言語での定義

列挙メンバーの定義。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