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

DOT11_SCAN_TYPE

列挙型
基底型i4

メンバー 4

名前10進16進
dot11_scan_type_active10x1
dot11_scan_type_passive20x2
dot11_scan_type_auto30x3
dot11_scan_type_forced-21474836480x80000000

各言語での定義

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

typedef enum DOT11_SCAN_TYPE : int {
    dot11_scan_type_active = 1,
    dot11_scan_type_passive = 2,
    dot11_scan_type_auto = 3,
    dot11_scan_type_forced = -2147483648
} DOT11_SCAN_TYPE;
public enum DOT11_SCAN_TYPE : int
{
    dot11_scan_type_active = 1,
    dot11_scan_type_passive = 2,
    dot11_scan_type_auto = 3,
    dot11_scan_type_forced = -2147483648,
}
Public Enum DOT11_SCAN_TYPE As Integer
    dot11_scan_type_active = 1
    dot11_scan_type_passive = 2
    dot11_scan_type_auto = 3
    dot11_scan_type_forced = -2147483648
End Enum
import enum

class DOT11_SCAN_TYPE(enum.IntEnum):
    dot11_scan_type_active = 1
    dot11_scan_type_passive = 2
    dot11_scan_type_auto = 3
    dot11_scan_type_forced = -2147483648
// DOT11_SCAN_TYPE
pub const dot11_scan_type_active: i32 = 1;
pub const dot11_scan_type_passive: i32 = 2;
pub const dot11_scan_type_auto: i32 = 3;
pub const dot11_scan_type_forced: i32 = -2147483648;
// DOT11_SCAN_TYPE
const (
	dot11_scan_type_active int32 = 1
	dot11_scan_type_passive int32 = 2
	dot11_scan_type_auto int32 = 3
	dot11_scan_type_forced int32 = -2147483648
)
const
  dot11_scan_type_active = 1;
  dot11_scan_type_passive = 2;
  dot11_scan_type_auto = 3;
  dot11_scan_type_forced = -2147483648;
// DOT11_SCAN_TYPE
pub const dot11_scan_type_active: i32 = 1;
pub const dot11_scan_type_passive: i32 = 2;
pub const dot11_scan_type_auto: i32 = 3;
pub const dot11_scan_type_forced: i32 = -2147483648;
const
  dot11_scan_type_active* = 1
  dot11_scan_type_passive* = 2
  dot11_scan_type_auto* = 3
  dot11_scan_type_forced* = -2147483648
enum DOT11_SCAN_TYPE : int {
    dot11_scan_type_active = 1,
    dot11_scan_type_passive = 2,
    dot11_scan_type_auto = 3,
    dot11_scan_type_forced = -2147483648,
}
#define global dot11_scan_type_active  0x1
#define global dot11_scan_type_passive 0x2
#define global dot11_scan_type_auto    0x3
#define global dot11_scan_type_forced  0x80000000