Win32 API 日本語リファレンス
ホームDevices.Nfc › SECURE_ELEMENT_TYPE

SECURE_ELEMENT_TYPE

列挙型
基底型i4

メンバー 3

名前10進16進
Integrated00x0
External10x1
DeviceHost20x2

各言語での定義

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

typedef enum SECURE_ELEMENT_TYPE : int {
    Integrated = 0,
    External = 1,
    DeviceHost = 2
} SECURE_ELEMENT_TYPE;
public enum SECURE_ELEMENT_TYPE : int
{
    Integrated = 0,
    External = 1,
    DeviceHost = 2,
}
Public Enum SECURE_ELEMENT_TYPE As Integer
    Integrated = 0
    External = 1
    DeviceHost = 2
End Enum
import enum

class SECURE_ELEMENT_TYPE(enum.IntEnum):
    Integrated = 0
    External = 1
    DeviceHost = 2
// SECURE_ELEMENT_TYPE
pub const Integrated: i32 = 0;
pub const External: i32 = 1;
pub const DeviceHost: i32 = 2;
// SECURE_ELEMENT_TYPE
const (
	Integrated int32 = 0
	External int32 = 1
	DeviceHost int32 = 2
)
const
  Integrated = 0;
  External = 1;
  DeviceHost = 2;
// SECURE_ELEMENT_TYPE
pub const Integrated: i32 = 0;
pub const External: i32 = 1;
pub const DeviceHost: i32 = 2;
const
  Integrated* = 0
  External* = 1
  DeviceHost* = 2
enum SECURE_ELEMENT_TYPE : int {
    Integrated = 0,
    External = 1,
    DeviceHost = 2,
}
#define global Integrated 0x0
#define global External   0x1
#define global DeviceHost 0x2