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

DOT11_BSS_TYPE

列挙型
基底型i4

メンバー 3

名前10進16進
dot11_BSS_type_infrastructure10x1
dot11_BSS_type_independent20x2
dot11_BSS_type_any30x3

各言語での定義

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

typedef enum DOT11_BSS_TYPE : int {
    dot11_BSS_type_infrastructure = 1,
    dot11_BSS_type_independent = 2,
    dot11_BSS_type_any = 3
} DOT11_BSS_TYPE;
public enum DOT11_BSS_TYPE : int
{
    dot11_BSS_type_infrastructure = 1,
    dot11_BSS_type_independent = 2,
    dot11_BSS_type_any = 3,
}
Public Enum DOT11_BSS_TYPE As Integer
    dot11_BSS_type_infrastructure = 1
    dot11_BSS_type_independent = 2
    dot11_BSS_type_any = 3
End Enum
import enum

class DOT11_BSS_TYPE(enum.IntEnum):
    dot11_BSS_type_infrastructure = 1
    dot11_BSS_type_independent = 2
    dot11_BSS_type_any = 3
// DOT11_BSS_TYPE
pub const dot11_BSS_type_infrastructure: i32 = 1;
pub const dot11_BSS_type_independent: i32 = 2;
pub const dot11_BSS_type_any: i32 = 3;
// DOT11_BSS_TYPE
const (
	dot11_BSS_type_infrastructure int32 = 1
	dot11_BSS_type_independent int32 = 2
	dot11_BSS_type_any int32 = 3
)
const
  dot11_BSS_type_infrastructure = 1;
  dot11_BSS_type_independent = 2;
  dot11_BSS_type_any = 3;
// DOT11_BSS_TYPE
pub const dot11_BSS_type_infrastructure: i32 = 1;
pub const dot11_BSS_type_independent: i32 = 2;
pub const dot11_BSS_type_any: i32 = 3;
const
  dot11_BSS_type_infrastructure* = 1
  dot11_BSS_type_independent* = 2
  dot11_BSS_type_any* = 3
enum DOT11_BSS_TYPE : int {
    dot11_BSS_type_infrastructure = 1,
    dot11_BSS_type_independent = 2,
    dot11_BSS_type_any = 3,
}
#define global dot11_BSS_type_infrastructure 0x1
#define global dot11_BSS_type_independent    0x2
#define global dot11_BSS_type_any            0x3