ホーム › NetworkManagement.WiFi › DOT11_SCAN_TYPE
DOT11_SCAN_TYPE
列挙型メンバー 4
| 名前 | 10進 | 16進 |
|---|---|---|
| dot11_scan_type_active | 1 | 0x1 |
| dot11_scan_type_passive | 2 | 0x2 |
| dot11_scan_type_auto | 3 | 0x3 |
| dot11_scan_type_forced | -2147483648 | 0x80000000 |
各言語での定義
列挙メンバーの定義。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 Enumimport 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* = -2147483648enum 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