Win32 API 日本語リファレンス
ホームUI.Shell › SYNCMGR_ITEM_CAPABILITIES

SYNCMGR_ITEM_CAPABILITIES

列挙型
基底型i4

メンバー 10

名前10進16進
SYNCMGR_ICM_NONE00x0
SYNCMGR_ICM_PROVIDES_ICON10x1
SYNCMGR_ICM_EVENT_STORE20x2
SYNCMGR_ICM_CONFLICT_STORE40x4
SYNCMGR_ICM_CAN_DELETE160x10
SYNCMGR_ICM_CAN_BROWSE_CONTENT655360x10000
SYNCMGR_ICM_QUERY_BEFORE_ENABLE10485760x100000
SYNCMGR_ICM_QUERY_BEFORE_DISABLE20971520x200000
SYNCMGR_ICM_QUERY_BEFORE_DELETE41943040x400000
SYNCMGR_ICM_VALID_MASK74055910x710017

各言語での定義

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

typedef enum SYNCMGR_ITEM_CAPABILITIES : int {
    SYNCMGR_ICM_NONE = 0,
    SYNCMGR_ICM_PROVIDES_ICON = 1,
    SYNCMGR_ICM_EVENT_STORE = 2,
    SYNCMGR_ICM_CONFLICT_STORE = 4,
    SYNCMGR_ICM_CAN_DELETE = 16,
    SYNCMGR_ICM_CAN_BROWSE_CONTENT = 65536,
    SYNCMGR_ICM_QUERY_BEFORE_ENABLE = 1048576,
    SYNCMGR_ICM_QUERY_BEFORE_DISABLE = 2097152,
    SYNCMGR_ICM_QUERY_BEFORE_DELETE = 4194304,
    SYNCMGR_ICM_VALID_MASK = 7405591
} SYNCMGR_ITEM_CAPABILITIES;
public enum SYNCMGR_ITEM_CAPABILITIES : int
{
    SYNCMGR_ICM_NONE = 0,
    SYNCMGR_ICM_PROVIDES_ICON = 1,
    SYNCMGR_ICM_EVENT_STORE = 2,
    SYNCMGR_ICM_CONFLICT_STORE = 4,
    SYNCMGR_ICM_CAN_DELETE = 16,
    SYNCMGR_ICM_CAN_BROWSE_CONTENT = 65536,
    SYNCMGR_ICM_QUERY_BEFORE_ENABLE = 1048576,
    SYNCMGR_ICM_QUERY_BEFORE_DISABLE = 2097152,
    SYNCMGR_ICM_QUERY_BEFORE_DELETE = 4194304,
    SYNCMGR_ICM_VALID_MASK = 7405591,
}
Public Enum SYNCMGR_ITEM_CAPABILITIES As Integer
    SYNCMGR_ICM_NONE = 0
    SYNCMGR_ICM_PROVIDES_ICON = 1
    SYNCMGR_ICM_EVENT_STORE = 2
    SYNCMGR_ICM_CONFLICT_STORE = 4
    SYNCMGR_ICM_CAN_DELETE = 16
    SYNCMGR_ICM_CAN_BROWSE_CONTENT = 65536
    SYNCMGR_ICM_QUERY_BEFORE_ENABLE = 1048576
    SYNCMGR_ICM_QUERY_BEFORE_DISABLE = 2097152
    SYNCMGR_ICM_QUERY_BEFORE_DELETE = 4194304
    SYNCMGR_ICM_VALID_MASK = 7405591
End Enum
import enum

class SYNCMGR_ITEM_CAPABILITIES(enum.IntEnum):
    SYNCMGR_ICM_NONE = 0
    SYNCMGR_ICM_PROVIDES_ICON = 1
    SYNCMGR_ICM_EVENT_STORE = 2
    SYNCMGR_ICM_CONFLICT_STORE = 4
    SYNCMGR_ICM_CAN_DELETE = 16
    SYNCMGR_ICM_CAN_BROWSE_CONTENT = 65536
    SYNCMGR_ICM_QUERY_BEFORE_ENABLE = 1048576
    SYNCMGR_ICM_QUERY_BEFORE_DISABLE = 2097152
    SYNCMGR_ICM_QUERY_BEFORE_DELETE = 4194304
    SYNCMGR_ICM_VALID_MASK = 7405591
// SYNCMGR_ITEM_CAPABILITIES
pub const SYNCMGR_ICM_NONE: i32 = 0;
pub const SYNCMGR_ICM_PROVIDES_ICON: i32 = 1;
pub const SYNCMGR_ICM_EVENT_STORE: i32 = 2;
pub const SYNCMGR_ICM_CONFLICT_STORE: i32 = 4;
pub const SYNCMGR_ICM_CAN_DELETE: i32 = 16;
pub const SYNCMGR_ICM_CAN_BROWSE_CONTENT: i32 = 65536;
pub const SYNCMGR_ICM_QUERY_BEFORE_ENABLE: i32 = 1048576;
pub const SYNCMGR_ICM_QUERY_BEFORE_DISABLE: i32 = 2097152;
pub const SYNCMGR_ICM_QUERY_BEFORE_DELETE: i32 = 4194304;
pub const SYNCMGR_ICM_VALID_MASK: i32 = 7405591;
// SYNCMGR_ITEM_CAPABILITIES
const (
	SYNCMGR_ICM_NONE int32 = 0
	SYNCMGR_ICM_PROVIDES_ICON int32 = 1
	SYNCMGR_ICM_EVENT_STORE int32 = 2
	SYNCMGR_ICM_CONFLICT_STORE int32 = 4
	SYNCMGR_ICM_CAN_DELETE int32 = 16
	SYNCMGR_ICM_CAN_BROWSE_CONTENT int32 = 65536
	SYNCMGR_ICM_QUERY_BEFORE_ENABLE int32 = 1048576
	SYNCMGR_ICM_QUERY_BEFORE_DISABLE int32 = 2097152
	SYNCMGR_ICM_QUERY_BEFORE_DELETE int32 = 4194304
	SYNCMGR_ICM_VALID_MASK int32 = 7405591
)
const
  SYNCMGR_ICM_NONE = 0;
  SYNCMGR_ICM_PROVIDES_ICON = 1;
  SYNCMGR_ICM_EVENT_STORE = 2;
  SYNCMGR_ICM_CONFLICT_STORE = 4;
  SYNCMGR_ICM_CAN_DELETE = 16;
  SYNCMGR_ICM_CAN_BROWSE_CONTENT = 65536;
  SYNCMGR_ICM_QUERY_BEFORE_ENABLE = 1048576;
  SYNCMGR_ICM_QUERY_BEFORE_DISABLE = 2097152;
  SYNCMGR_ICM_QUERY_BEFORE_DELETE = 4194304;
  SYNCMGR_ICM_VALID_MASK = 7405591;
// SYNCMGR_ITEM_CAPABILITIES
pub const SYNCMGR_ICM_NONE: i32 = 0;
pub const SYNCMGR_ICM_PROVIDES_ICON: i32 = 1;
pub const SYNCMGR_ICM_EVENT_STORE: i32 = 2;
pub const SYNCMGR_ICM_CONFLICT_STORE: i32 = 4;
pub const SYNCMGR_ICM_CAN_DELETE: i32 = 16;
pub const SYNCMGR_ICM_CAN_BROWSE_CONTENT: i32 = 65536;
pub const SYNCMGR_ICM_QUERY_BEFORE_ENABLE: i32 = 1048576;
pub const SYNCMGR_ICM_QUERY_BEFORE_DISABLE: i32 = 2097152;
pub const SYNCMGR_ICM_QUERY_BEFORE_DELETE: i32 = 4194304;
pub const SYNCMGR_ICM_VALID_MASK: i32 = 7405591;
const
  SYNCMGR_ICM_NONE* = 0
  SYNCMGR_ICM_PROVIDES_ICON* = 1
  SYNCMGR_ICM_EVENT_STORE* = 2
  SYNCMGR_ICM_CONFLICT_STORE* = 4
  SYNCMGR_ICM_CAN_DELETE* = 16
  SYNCMGR_ICM_CAN_BROWSE_CONTENT* = 65536
  SYNCMGR_ICM_QUERY_BEFORE_ENABLE* = 1048576
  SYNCMGR_ICM_QUERY_BEFORE_DISABLE* = 2097152
  SYNCMGR_ICM_QUERY_BEFORE_DELETE* = 4194304
  SYNCMGR_ICM_VALID_MASK* = 7405591
enum SYNCMGR_ITEM_CAPABILITIES : int {
    SYNCMGR_ICM_NONE = 0,
    SYNCMGR_ICM_PROVIDES_ICON = 1,
    SYNCMGR_ICM_EVENT_STORE = 2,
    SYNCMGR_ICM_CONFLICT_STORE = 4,
    SYNCMGR_ICM_CAN_DELETE = 16,
    SYNCMGR_ICM_CAN_BROWSE_CONTENT = 65536,
    SYNCMGR_ICM_QUERY_BEFORE_ENABLE = 1048576,
    SYNCMGR_ICM_QUERY_BEFORE_DISABLE = 2097152,
    SYNCMGR_ICM_QUERY_BEFORE_DELETE = 4194304,
    SYNCMGR_ICM_VALID_MASK = 7405591,
}
#define global SYNCMGR_ICM_NONE                 0x0
#define global SYNCMGR_ICM_PROVIDES_ICON        0x1
#define global SYNCMGR_ICM_EVENT_STORE          0x2
#define global SYNCMGR_ICM_CONFLICT_STORE       0x4
#define global SYNCMGR_ICM_CAN_DELETE           0x10
#define global SYNCMGR_ICM_CAN_BROWSE_CONTENT   0x10000
#define global SYNCMGR_ICM_QUERY_BEFORE_ENABLE  0x100000
#define global SYNCMGR_ICM_QUERY_BEFORE_DISABLE 0x200000
#define global SYNCMGR_ICM_QUERY_BEFORE_DELETE  0x400000
#define global SYNCMGR_ICM_VALID_MASK           0x710017