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

EVT_QUERY_FLAGS

列挙型
基底型u4

メンバー 5

名前10進16進
EvtQueryChannelPath10x1
EvtQueryFilePath20x2
EvtQueryForwardDirection2560x100
EvtQueryReverseDirection5120x200
EvtQueryTolerateQueryErrors40960x1000

各言語での定義

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

typedef enum EVT_QUERY_FLAGS : unsigned int {
    EvtQueryChannelPath = 1,
    EvtQueryFilePath = 2,
    EvtQueryForwardDirection = 256,
    EvtQueryReverseDirection = 512,
    EvtQueryTolerateQueryErrors = 4096
} EVT_QUERY_FLAGS;
public enum EVT_QUERY_FLAGS : uint
{
    EvtQueryChannelPath = 1,
    EvtQueryFilePath = 2,
    EvtQueryForwardDirection = 256,
    EvtQueryReverseDirection = 512,
    EvtQueryTolerateQueryErrors = 4096,
}
Public Enum EVT_QUERY_FLAGS As UInteger
    EvtQueryChannelPath = 1
    EvtQueryFilePath = 2
    EvtQueryForwardDirection = 256
    EvtQueryReverseDirection = 512
    EvtQueryTolerateQueryErrors = 4096
End Enum
import enum

class EVT_QUERY_FLAGS(enum.IntEnum):
    EvtQueryChannelPath = 1
    EvtQueryFilePath = 2
    EvtQueryForwardDirection = 256
    EvtQueryReverseDirection = 512
    EvtQueryTolerateQueryErrors = 4096
// EVT_QUERY_FLAGS
pub const EvtQueryChannelPath: u32 = 1;
pub const EvtQueryFilePath: u32 = 2;
pub const EvtQueryForwardDirection: u32 = 256;
pub const EvtQueryReverseDirection: u32 = 512;
pub const EvtQueryTolerateQueryErrors: u32 = 4096;
// EVT_QUERY_FLAGS
const (
	EvtQueryChannelPath uint32 = 1
	EvtQueryFilePath uint32 = 2
	EvtQueryForwardDirection uint32 = 256
	EvtQueryReverseDirection uint32 = 512
	EvtQueryTolerateQueryErrors uint32 = 4096
)
const
  EvtQueryChannelPath = 1;
  EvtQueryFilePath = 2;
  EvtQueryForwardDirection = 256;
  EvtQueryReverseDirection = 512;
  EvtQueryTolerateQueryErrors = 4096;
// EVT_QUERY_FLAGS
pub const EvtQueryChannelPath: u32 = 1;
pub const EvtQueryFilePath: u32 = 2;
pub const EvtQueryForwardDirection: u32 = 256;
pub const EvtQueryReverseDirection: u32 = 512;
pub const EvtQueryTolerateQueryErrors: u32 = 4096;
const
  EvtQueryChannelPath* = 1
  EvtQueryFilePath* = 2
  EvtQueryForwardDirection* = 256
  EvtQueryReverseDirection* = 512
  EvtQueryTolerateQueryErrors* = 4096
enum EVT_QUERY_FLAGS : uint {
    EvtQueryChannelPath = 1,
    EvtQueryFilePath = 2,
    EvtQueryForwardDirection = 256,
    EvtQueryReverseDirection = 512,
    EvtQueryTolerateQueryErrors = 4096,
}
#define global EvtQueryChannelPath         0x1
#define global EvtQueryFilePath            0x2
#define global EvtQueryForwardDirection    0x100
#define global EvtQueryReverseDirection    0x200
#define global EvtQueryTolerateQueryErrors 0x1000