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

EVT_CHANNEL_SID_TYPE

列挙型
基底型i4

メンバー 2

名前10進16進説明
EvtChannelSidTypeNone00x0イベントをログに記録したプリンシパルの SID をイベントに含めません。
EvtChannelSidTypePublishing10x1イベントをログに記録したプリンシパルの SID をイベントに含めます。

公式ドキュメント

イベントをログに記録したプリンシパルのセキュリティ識別子 (SID) をイベントに含めるかどうかを決定する値を定義します。

出典・ライセンス: 上記「公式ドキュメント」の内容は 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_SID_TYPE : int {
    EvtChannelSidTypeNone = 0,
    EvtChannelSidTypePublishing = 1
} EVT_CHANNEL_SID_TYPE;
public enum EVT_CHANNEL_SID_TYPE : int
{
    EvtChannelSidTypeNone = 0,
    EvtChannelSidTypePublishing = 1,
}
Public Enum EVT_CHANNEL_SID_TYPE As Integer
    EvtChannelSidTypeNone = 0
    EvtChannelSidTypePublishing = 1
End Enum
import enum

class EVT_CHANNEL_SID_TYPE(enum.IntEnum):
    EvtChannelSidTypeNone = 0
    EvtChannelSidTypePublishing = 1
// EVT_CHANNEL_SID_TYPE
pub const EvtChannelSidTypeNone: i32 = 0;
pub const EvtChannelSidTypePublishing: i32 = 1;
// EVT_CHANNEL_SID_TYPE
const (
	EvtChannelSidTypeNone int32 = 0
	EvtChannelSidTypePublishing int32 = 1
)
const
  EvtChannelSidTypeNone = 0;
  EvtChannelSidTypePublishing = 1;
// EVT_CHANNEL_SID_TYPE
pub const EvtChannelSidTypeNone: i32 = 0;
pub const EvtChannelSidTypePublishing: i32 = 1;
const
  EvtChannelSidTypeNone* = 0
  EvtChannelSidTypePublishing* = 1
enum EVT_CHANNEL_SID_TYPE : int {
    EvtChannelSidTypeNone = 0,
    EvtChannelSidTypePublishing = 1,
}
#define global EvtChannelSidTypeNone       0x0
#define global EvtChannelSidTypePublishing 0x1