ホーム › Devices.Nfc › SECURE_ELEMENT_TYPE
SECURE_ELEMENT_TYPE
列挙型メンバー 3
| 名前 | 10進 | 16進 |
|---|---|---|
| Integrated | 0 | 0x0 |
| External | 1 | 0x1 |
| DeviceHost | 2 | 0x2 |
各言語での定義
列挙メンバーの定義。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 Enumimport 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* = 2enum SECURE_ELEMENT_TYPE : int {
Integrated = 0,
External = 1,
DeviceHost = 2,
}#define global Integrated 0x0
#define global External 0x1
#define global DeviceHost 0x2