ホーム › System.EventLog › EVT_QUERY_FLAGS
EVT_QUERY_FLAGS
列挙型メンバー 5
| 名前 | 10進 | 16進 |
|---|---|---|
| EvtQueryChannelPath | 1 | 0x1 |
| EvtQueryFilePath | 2 | 0x2 |
| EvtQueryForwardDirection | 256 | 0x100 |
| EvtQueryReverseDirection | 512 | 0x200 |
| EvtQueryTolerateQueryErrors | 4096 | 0x1000 |
各言語での定義
列挙メンバーの定義。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 Enumimport 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* = 4096enum 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