Win32 API 日本語リファレンス
ホームSystem.Diagnostics.Etw › PROPERTY_FLAGS

PROPERTY_FLAGS

列挙型
基底型i4

メンバー 8

名前10進16進
PropertyStruct10x1
PropertyParamLength20x2
PropertyParamCount40x4
PropertyWBEMXmlFragment80x8
PropertyParamFixedLength160x10
PropertyParamFixedCount320x20
PropertyHasTags640x40
PropertyHasCustomSchema1280x80

各言語での定義

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

typedef enum PROPERTY_FLAGS : int {
    PropertyStruct = 1,
    PropertyParamLength = 2,
    PropertyParamCount = 4,
    PropertyWBEMXmlFragment = 8,
    PropertyParamFixedLength = 16,
    PropertyParamFixedCount = 32,
    PropertyHasTags = 64,
    PropertyHasCustomSchema = 128
} PROPERTY_FLAGS;
public enum PROPERTY_FLAGS : int
{
    PropertyStruct = 1,
    PropertyParamLength = 2,
    PropertyParamCount = 4,
    PropertyWBEMXmlFragment = 8,
    PropertyParamFixedLength = 16,
    PropertyParamFixedCount = 32,
    PropertyHasTags = 64,
    PropertyHasCustomSchema = 128,
}
Public Enum PROPERTY_FLAGS As Integer
    PropertyStruct = 1
    PropertyParamLength = 2
    PropertyParamCount = 4
    PropertyWBEMXmlFragment = 8
    PropertyParamFixedLength = 16
    PropertyParamFixedCount = 32
    PropertyHasTags = 64
    PropertyHasCustomSchema = 128
End Enum
import enum

class PROPERTY_FLAGS(enum.IntEnum):
    PropertyStruct = 1
    PropertyParamLength = 2
    PropertyParamCount = 4
    PropertyWBEMXmlFragment = 8
    PropertyParamFixedLength = 16
    PropertyParamFixedCount = 32
    PropertyHasTags = 64
    PropertyHasCustomSchema = 128
// PROPERTY_FLAGS
pub const PropertyStruct: i32 = 1;
pub const PropertyParamLength: i32 = 2;
pub const PropertyParamCount: i32 = 4;
pub const PropertyWBEMXmlFragment: i32 = 8;
pub const PropertyParamFixedLength: i32 = 16;
pub const PropertyParamFixedCount: i32 = 32;
pub const PropertyHasTags: i32 = 64;
pub const PropertyHasCustomSchema: i32 = 128;
// PROPERTY_FLAGS
const (
	PropertyStruct int32 = 1
	PropertyParamLength int32 = 2
	PropertyParamCount int32 = 4
	PropertyWBEMXmlFragment int32 = 8
	PropertyParamFixedLength int32 = 16
	PropertyParamFixedCount int32 = 32
	PropertyHasTags int32 = 64
	PropertyHasCustomSchema int32 = 128
)
const
  PropertyStruct = 1;
  PropertyParamLength = 2;
  PropertyParamCount = 4;
  PropertyWBEMXmlFragment = 8;
  PropertyParamFixedLength = 16;
  PropertyParamFixedCount = 32;
  PropertyHasTags = 64;
  PropertyHasCustomSchema = 128;
// PROPERTY_FLAGS
pub const PropertyStruct: i32 = 1;
pub const PropertyParamLength: i32 = 2;
pub const PropertyParamCount: i32 = 4;
pub const PropertyWBEMXmlFragment: i32 = 8;
pub const PropertyParamFixedLength: i32 = 16;
pub const PropertyParamFixedCount: i32 = 32;
pub const PropertyHasTags: i32 = 64;
pub const PropertyHasCustomSchema: i32 = 128;
const
  PropertyStruct* = 1
  PropertyParamLength* = 2
  PropertyParamCount* = 4
  PropertyWBEMXmlFragment* = 8
  PropertyParamFixedLength* = 16
  PropertyParamFixedCount* = 32
  PropertyHasTags* = 64
  PropertyHasCustomSchema* = 128
enum PROPERTY_FLAGS : int {
    PropertyStruct = 1,
    PropertyParamLength = 2,
    PropertyParamCount = 4,
    PropertyWBEMXmlFragment = 8,
    PropertyParamFixedLength = 16,
    PropertyParamFixedCount = 32,
    PropertyHasTags = 64,
    PropertyHasCustomSchema = 128,
}
#define global PropertyStruct           0x1
#define global PropertyParamLength      0x2
#define global PropertyParamCount       0x4
#define global PropertyWBEMXmlFragment  0x8
#define global PropertyParamFixedLength 0x10
#define global PropertyParamFixedCount  0x20
#define global PropertyHasTags          0x40
#define global PropertyHasCustomSchema  0x80