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

EVT_EXPORTLOG_FLAGS

列挙型
基底型u4

メンバー 4

名前10進16進
EvtExportLogChannelPath10x1
EvtExportLogFilePath20x2
EvtExportLogTolerateQueryErrors40960x1000
EvtExportLogOverwrite81920x2000

各言語での定義

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

typedef enum EVT_EXPORTLOG_FLAGS : unsigned int {
    EvtExportLogChannelPath = 1,
    EvtExportLogFilePath = 2,
    EvtExportLogTolerateQueryErrors = 4096,
    EvtExportLogOverwrite = 8192
} EVT_EXPORTLOG_FLAGS;
public enum EVT_EXPORTLOG_FLAGS : uint
{
    EvtExportLogChannelPath = 1,
    EvtExportLogFilePath = 2,
    EvtExportLogTolerateQueryErrors = 4096,
    EvtExportLogOverwrite = 8192,
}
Public Enum EVT_EXPORTLOG_FLAGS As UInteger
    EvtExportLogChannelPath = 1
    EvtExportLogFilePath = 2
    EvtExportLogTolerateQueryErrors = 4096
    EvtExportLogOverwrite = 8192
End Enum
import enum

class EVT_EXPORTLOG_FLAGS(enum.IntEnum):
    EvtExportLogChannelPath = 1
    EvtExportLogFilePath = 2
    EvtExportLogTolerateQueryErrors = 4096
    EvtExportLogOverwrite = 8192
// EVT_EXPORTLOG_FLAGS
pub const EvtExportLogChannelPath: u32 = 1;
pub const EvtExportLogFilePath: u32 = 2;
pub const EvtExportLogTolerateQueryErrors: u32 = 4096;
pub const EvtExportLogOverwrite: u32 = 8192;
// EVT_EXPORTLOG_FLAGS
const (
	EvtExportLogChannelPath uint32 = 1
	EvtExportLogFilePath uint32 = 2
	EvtExportLogTolerateQueryErrors uint32 = 4096
	EvtExportLogOverwrite uint32 = 8192
)
const
  EvtExportLogChannelPath = 1;
  EvtExportLogFilePath = 2;
  EvtExportLogTolerateQueryErrors = 4096;
  EvtExportLogOverwrite = 8192;
// EVT_EXPORTLOG_FLAGS
pub const EvtExportLogChannelPath: u32 = 1;
pub const EvtExportLogFilePath: u32 = 2;
pub const EvtExportLogTolerateQueryErrors: u32 = 4096;
pub const EvtExportLogOverwrite: u32 = 8192;
const
  EvtExportLogChannelPath* = 1
  EvtExportLogFilePath* = 2
  EvtExportLogTolerateQueryErrors* = 4096
  EvtExportLogOverwrite* = 8192
enum EVT_EXPORTLOG_FLAGS : uint {
    EvtExportLogChannelPath = 1,
    EvtExportLogFilePath = 2,
    EvtExportLogTolerateQueryErrors = 4096,
    EvtExportLogOverwrite = 8192,
}
#define global EvtExportLogChannelPath         0x1
#define global EvtExportLogFilePath            0x2
#define global EvtExportLogTolerateQueryErrors 0x1000
#define global EvtExportLogOverwrite           0x2000