ホーム › NetworkManagement.WiFi › DOT11_BSS_TYPE
DOT11_BSS_TYPE
列挙型メンバー 3
| 名前 | 10進 | 16進 |
|---|---|---|
| dot11_BSS_type_infrastructure | 1 | 0x1 |
| dot11_BSS_type_independent | 2 | 0x2 |
| dot11_BSS_type_any | 3 | 0x3 |
公式ドキュメント
DOT11_BSS_TYPE 列挙型は、基本サービス セット (BSS) のネットワーク種別を定義します。
解説(Remarks)
-
dot11_BSS_type_infrastructure
-
インフラストラクチャ BSS ネットワークを指定します。
-
dot11_BSS_type_independent
-
独立 BSS (IBSS) ネットワークを指定します。
-
dot11_BSS_type_any
-
インフラストラクチャ ネットワークまたは IBSS ネットワークのいずれかを指定します。
出典・ライセンス: 上記「公式ドキュメント」の内容は Microsoft の Win32 API ドキュメント(MicrosoftDocs/sdk-api)を日本語に翻訳・改変したものです。© Microsoft Corporation. CC BY 4.0 で提供。
Microsoft 公式リファレンス: 英語 (en-us) · 日本語 (ja-jp)
Microsoft 公式リファレンス: 英語 (en-us) · 日本語 (ja-jp)
各言語での定義
列挙メンバーの定義。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 Enumimport 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* = 3enum 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