ホーム › NetworkManagement.MobileBroadband › MBN_RADIO
MBN_RADIO
列挙型メンバー 2
| 名前 | 10進 | 16進 | 説明 |
|---|---|---|---|
| MBN_RADIO_OFF | 0 | 0x0 | デバイスの無線はオフです。 |
| MBN_RADIO_ON | 1 | 0x1 | デバイスの無線はオンです。 |
公式ドキュメント
重要
Windows 10 バージョン 1803 以降、このセクションで説明する Win32 API は Windows.Networking.Connectivity 名前空間の Windows ランタイム API に置き換えられています。
MBN_RADIO 列挙型は、デバイスの無線がオンかオフかを示します。
出典・ライセンス: 上記「公式ドキュメント」の内容は Microsoft の Win32 API ドキュメント(MicrosoftDocs/sdk-api)を日本語に翻訳・改変したものです。© Microsoft Corporation. CC BY 4.0 で提供。
Microsoft 公式リファレンス: 英語 (en-us) · 日本語 (ja-jp) · 原文ソース (GitHub)
Microsoft 公式リファレンス: 英語 (en-us) · 日本語 (ja-jp) · 原文ソース (GitHub)
各言語での定義
列挙メンバーの定義。HSP タブは #define global(値は16進)。
typedef enum MBN_RADIO : int {
MBN_RADIO_OFF = 0,
MBN_RADIO_ON = 1
} MBN_RADIO;public enum MBN_RADIO : int
{
MBN_RADIO_OFF = 0,
MBN_RADIO_ON = 1,
}Public Enum MBN_RADIO As Integer
MBN_RADIO_OFF = 0
MBN_RADIO_ON = 1
End Enumimport enum
class MBN_RADIO(enum.IntEnum):
MBN_RADIO_OFF = 0
MBN_RADIO_ON = 1// MBN_RADIO
pub const MBN_RADIO_OFF: i32 = 0;
pub const MBN_RADIO_ON: i32 = 1;// MBN_RADIO
const (
MBN_RADIO_OFF int32 = 0
MBN_RADIO_ON int32 = 1
)const
MBN_RADIO_OFF = 0;
MBN_RADIO_ON = 1;// MBN_RADIO
pub const MBN_RADIO_OFF: i32 = 0;
pub const MBN_RADIO_ON: i32 = 1;const
MBN_RADIO_OFF* = 0
MBN_RADIO_ON* = 1enum MBN_RADIO : int {
MBN_RADIO_OFF = 0,
MBN_RADIO_ON = 1,
}#define global MBN_RADIO_OFF 0x0
#define global MBN_RADIO_ON 0x1