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

EVT_CHANNEL_SID_TYPE

列挙型
基底型i4

メンバー 2

名前10進16進
EvtChannelSidTypeNone00x0
EvtChannelSidTypePublishing10x1

各言語での定義

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