Win32 API 日本語リファレンス
ホームNetworkManagement.WiFi › DOT11_WFD_SCAN_TYPE

DOT11_WFD_SCAN_TYPE

列挙型
基底型i4

メンバー 3

名前10進16進
dot11_wfd_scan_type_active10x1
dot11_wfd_scan_type_passive20x2
dot11_wfd_scan_type_auto30x3

各言語での定義

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

typedef enum DOT11_WFD_SCAN_TYPE : int {
    dot11_wfd_scan_type_active = 1,
    dot11_wfd_scan_type_passive = 2,
    dot11_wfd_scan_type_auto = 3
} DOT11_WFD_SCAN_TYPE;
public enum DOT11_WFD_SCAN_TYPE : int
{
    dot11_wfd_scan_type_active = 1,
    dot11_wfd_scan_type_passive = 2,
    dot11_wfd_scan_type_auto = 3,
}
Public Enum DOT11_WFD_SCAN_TYPE As Integer
    dot11_wfd_scan_type_active = 1
    dot11_wfd_scan_type_passive = 2
    dot11_wfd_scan_type_auto = 3
End Enum
import enum

class DOT11_WFD_SCAN_TYPE(enum.IntEnum):
    dot11_wfd_scan_type_active = 1
    dot11_wfd_scan_type_passive = 2
    dot11_wfd_scan_type_auto = 3
// DOT11_WFD_SCAN_TYPE
pub const dot11_wfd_scan_type_active: i32 = 1;
pub const dot11_wfd_scan_type_passive: i32 = 2;
pub const dot11_wfd_scan_type_auto: i32 = 3;
// DOT11_WFD_SCAN_TYPE
const (
	dot11_wfd_scan_type_active int32 = 1
	dot11_wfd_scan_type_passive int32 = 2
	dot11_wfd_scan_type_auto int32 = 3
)
const
  dot11_wfd_scan_type_active = 1;
  dot11_wfd_scan_type_passive = 2;
  dot11_wfd_scan_type_auto = 3;
// DOT11_WFD_SCAN_TYPE
pub const dot11_wfd_scan_type_active: i32 = 1;
pub const dot11_wfd_scan_type_passive: i32 = 2;
pub const dot11_wfd_scan_type_auto: i32 = 3;
const
  dot11_wfd_scan_type_active* = 1
  dot11_wfd_scan_type_passive* = 2
  dot11_wfd_scan_type_auto* = 3
enum DOT11_WFD_SCAN_TYPE : int {
    dot11_wfd_scan_type_active = 1,
    dot11_wfd_scan_type_passive = 2,
    dot11_wfd_scan_type_auto = 3,
}
#define global dot11_wfd_scan_type_active  0x1
#define global dot11_wfd_scan_type_passive 0x2
#define global dot11_wfd_scan_type_auto    0x3