Win32 API 日本語リファレンス
ホームStorage.Packaging.Appx › APPX_CAPABILITY_CLASS_TYPE

APPX_CAPABILITY_CLASS_TYPE

列挙型
基底型i4

メンバー 6

名前10進16進
APPX_CAPABILITY_CLASS_DEFAULT00x0
APPX_CAPABILITY_CLASS_GENERAL10x1
APPX_CAPABILITY_CLASS_RESTRICTED20x2
APPX_CAPABILITY_CLASS_WINDOWS40x4
APPX_CAPABILITY_CLASS_ALL70x7
APPX_CAPABILITY_CLASS_CUSTOM80x8

各言語での定義

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

typedef enum APPX_CAPABILITY_CLASS_TYPE : int {
    APPX_CAPABILITY_CLASS_DEFAULT = 0,
    APPX_CAPABILITY_CLASS_GENERAL = 1,
    APPX_CAPABILITY_CLASS_RESTRICTED = 2,
    APPX_CAPABILITY_CLASS_WINDOWS = 4,
    APPX_CAPABILITY_CLASS_ALL = 7,
    APPX_CAPABILITY_CLASS_CUSTOM = 8
} APPX_CAPABILITY_CLASS_TYPE;
public enum APPX_CAPABILITY_CLASS_TYPE : int
{
    APPX_CAPABILITY_CLASS_DEFAULT = 0,
    APPX_CAPABILITY_CLASS_GENERAL = 1,
    APPX_CAPABILITY_CLASS_RESTRICTED = 2,
    APPX_CAPABILITY_CLASS_WINDOWS = 4,
    APPX_CAPABILITY_CLASS_ALL = 7,
    APPX_CAPABILITY_CLASS_CUSTOM = 8,
}
Public Enum APPX_CAPABILITY_CLASS_TYPE As Integer
    APPX_CAPABILITY_CLASS_DEFAULT = 0
    APPX_CAPABILITY_CLASS_GENERAL = 1
    APPX_CAPABILITY_CLASS_RESTRICTED = 2
    APPX_CAPABILITY_CLASS_WINDOWS = 4
    APPX_CAPABILITY_CLASS_ALL = 7
    APPX_CAPABILITY_CLASS_CUSTOM = 8
End Enum
import enum

class APPX_CAPABILITY_CLASS_TYPE(enum.IntEnum):
    APPX_CAPABILITY_CLASS_DEFAULT = 0
    APPX_CAPABILITY_CLASS_GENERAL = 1
    APPX_CAPABILITY_CLASS_RESTRICTED = 2
    APPX_CAPABILITY_CLASS_WINDOWS = 4
    APPX_CAPABILITY_CLASS_ALL = 7
    APPX_CAPABILITY_CLASS_CUSTOM = 8
// APPX_CAPABILITY_CLASS_TYPE
pub const APPX_CAPABILITY_CLASS_DEFAULT: i32 = 0;
pub const APPX_CAPABILITY_CLASS_GENERAL: i32 = 1;
pub const APPX_CAPABILITY_CLASS_RESTRICTED: i32 = 2;
pub const APPX_CAPABILITY_CLASS_WINDOWS: i32 = 4;
pub const APPX_CAPABILITY_CLASS_ALL: i32 = 7;
pub const APPX_CAPABILITY_CLASS_CUSTOM: i32 = 8;
// APPX_CAPABILITY_CLASS_TYPE
const (
	APPX_CAPABILITY_CLASS_DEFAULT int32 = 0
	APPX_CAPABILITY_CLASS_GENERAL int32 = 1
	APPX_CAPABILITY_CLASS_RESTRICTED int32 = 2
	APPX_CAPABILITY_CLASS_WINDOWS int32 = 4
	APPX_CAPABILITY_CLASS_ALL int32 = 7
	APPX_CAPABILITY_CLASS_CUSTOM int32 = 8
)
const
  APPX_CAPABILITY_CLASS_DEFAULT = 0;
  APPX_CAPABILITY_CLASS_GENERAL = 1;
  APPX_CAPABILITY_CLASS_RESTRICTED = 2;
  APPX_CAPABILITY_CLASS_WINDOWS = 4;
  APPX_CAPABILITY_CLASS_ALL = 7;
  APPX_CAPABILITY_CLASS_CUSTOM = 8;
// APPX_CAPABILITY_CLASS_TYPE
pub const APPX_CAPABILITY_CLASS_DEFAULT: i32 = 0;
pub const APPX_CAPABILITY_CLASS_GENERAL: i32 = 1;
pub const APPX_CAPABILITY_CLASS_RESTRICTED: i32 = 2;
pub const APPX_CAPABILITY_CLASS_WINDOWS: i32 = 4;
pub const APPX_CAPABILITY_CLASS_ALL: i32 = 7;
pub const APPX_CAPABILITY_CLASS_CUSTOM: i32 = 8;
const
  APPX_CAPABILITY_CLASS_DEFAULT* = 0
  APPX_CAPABILITY_CLASS_GENERAL* = 1
  APPX_CAPABILITY_CLASS_RESTRICTED* = 2
  APPX_CAPABILITY_CLASS_WINDOWS* = 4
  APPX_CAPABILITY_CLASS_ALL* = 7
  APPX_CAPABILITY_CLASS_CUSTOM* = 8
enum APPX_CAPABILITY_CLASS_TYPE : int {
    APPX_CAPABILITY_CLASS_DEFAULT = 0,
    APPX_CAPABILITY_CLASS_GENERAL = 1,
    APPX_CAPABILITY_CLASS_RESTRICTED = 2,
    APPX_CAPABILITY_CLASS_WINDOWS = 4,
    APPX_CAPABILITY_CLASS_ALL = 7,
    APPX_CAPABILITY_CLASS_CUSTOM = 8,
}
#define global APPX_CAPABILITY_CLASS_DEFAULT    0x0
#define global APPX_CAPABILITY_CLASS_GENERAL    0x1
#define global APPX_CAPABILITY_CLASS_RESTRICTED 0x2
#define global APPX_CAPABILITY_CLASS_WINDOWS    0x4
#define global APPX_CAPABILITY_CLASS_ALL        0x7
#define global APPX_CAPABILITY_CLASS_CUSTOM     0x8