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

NFC_P2P_MODE

列挙型
基底型i4

メンバー 3

名前10進16進
NfcDepDefault00x0
NfcDepPoll10x1
NfcDepListen20x2

各言語での定義

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

typedef enum NFC_P2P_MODE : int {
    NfcDepDefault = 0,
    NfcDepPoll = 1,
    NfcDepListen = 2
} NFC_P2P_MODE;
public enum NFC_P2P_MODE : int
{
    NfcDepDefault = 0,
    NfcDepPoll = 1,
    NfcDepListen = 2,
}
Public Enum NFC_P2P_MODE As Integer
    NfcDepDefault = 0
    NfcDepPoll = 1
    NfcDepListen = 2
End Enum
import enum

class NFC_P2P_MODE(enum.IntEnum):
    NfcDepDefault = 0
    NfcDepPoll = 1
    NfcDepListen = 2
// NFC_P2P_MODE
pub const NfcDepDefault: i32 = 0;
pub const NfcDepPoll: i32 = 1;
pub const NfcDepListen: i32 = 2;
// NFC_P2P_MODE
const (
	NfcDepDefault int32 = 0
	NfcDepPoll int32 = 1
	NfcDepListen int32 = 2
)
const
  NfcDepDefault = 0;
  NfcDepPoll = 1;
  NfcDepListen = 2;
// NFC_P2P_MODE
pub const NfcDepDefault: i32 = 0;
pub const NfcDepPoll: i32 = 1;
pub const NfcDepListen: i32 = 2;
const
  NfcDepDefault* = 0
  NfcDepPoll* = 1
  NfcDepListen* = 2
enum NFC_P2P_MODE : int {
    NfcDepDefault = 0,
    NfcDepPoll = 1,
    NfcDepListen = 2,
}
#define global NfcDepDefault 0x0
#define global NfcDepPoll    0x1
#define global NfcDepListen  0x2