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

WLAN_AUTOCONF_OPCODE

列挙型
基底型i4

メンバー 8

名前10進16進説明
wlan_autoconf_opcode_start00x0使用されません。
wlan_autoconf_opcode_show_denied_networks10x1ユーザーおよびグループ ポリシーによって拒否されたネットワークを、利用可能なネットワークの一覧に含めるかどうかを指定するパラメーターの設定または照会に使用される opcode です。
wlan_autoconf_opcode_power_setting20x2電源設定の照会に使用される opcode です。
wlan_autoconf_opcode_only_use_gp_profiles_for_allowed_networks30x3グループ ポリシーによって作成されていないプロファイルを使用して、一致するグループ ポリシー プロファイルを持つ許可済みネットワークに接続できるかどうかを照会するために使用される opcode です。
wlan_autoconf_opcode_allow_explicit_creds40x4現在のワイヤレス インターフェイスで共有ユーザー資格情報が許可されているかどうかを設定または照会するために使用される opcode です。
wlan_autoconf_opcode_block_period50x5現在のワイヤレス インターフェイスのブロック期間の設定を、設定または照会するために使用される opcode です。ブロック期間とは、接続の失敗後にワイヤレス ネットワークへの自動接続を試行しない時間 (秒単位) です。
wlan_autoconf_opcode_allow_virtual_station_extensibility60x6

仮想ステーションでの拡張機能を許可するかどうかを設定または照会するために使用される opcode です。既定では、仮想ステーションでの拡張機能は許可されます。この opcode の値は再起動後も保持されます。

この列挙値は、ワイヤレス LAN サービスがインストールされた Windows 7 および Windows Server 2008 R2 でサポートされます。

wlan_autoconf_opcode_end70x7使用されません。

公式ドキュメント

WLAN_AUTOCONF_OPCODE 列挙型は、自動構成パラメーターを指定します。

解説(Remarks)

WLAN_AUTOCONF_OPCODE 列挙型は、Windows Vista 以降でサポートされるワイヤレス構成コンポーネントである自動構成モジュール (Auto Configuration Module、ACM) によって使用されます。

WLAN_AUTOCONF_OPCODE は、WlanQueryAutoConfigParameter 関数および WlanSetAutoConfigParameter 関数に渡される OpCode パラメーターに指定できる値を表します。

出典・ライセンス: 上記「公式ドキュメント」の内容は Microsoft の Win32 API ドキュメント(MicrosoftDocs/sdk-api)を日本語に翻訳・改変したものです。© Microsoft Corporation. CC BY 4.0 で提供。
Microsoft 公式リファレンス: 英語 (en-us) · 日本語 (ja-jp) · 原文ソース (GitHub)

各言語での定義

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

typedef enum WLAN_AUTOCONF_OPCODE : int {
    wlan_autoconf_opcode_start = 0,
    wlan_autoconf_opcode_show_denied_networks = 1,
    wlan_autoconf_opcode_power_setting = 2,
    wlan_autoconf_opcode_only_use_gp_profiles_for_allowed_networks = 3,
    wlan_autoconf_opcode_allow_explicit_creds = 4,
    wlan_autoconf_opcode_block_period = 5,
    wlan_autoconf_opcode_allow_virtual_station_extensibility = 6,
    wlan_autoconf_opcode_end = 7
} WLAN_AUTOCONF_OPCODE;
public enum WLAN_AUTOCONF_OPCODE : int
{
    wlan_autoconf_opcode_start = 0,
    wlan_autoconf_opcode_show_denied_networks = 1,
    wlan_autoconf_opcode_power_setting = 2,
    wlan_autoconf_opcode_only_use_gp_profiles_for_allowed_networks = 3,
    wlan_autoconf_opcode_allow_explicit_creds = 4,
    wlan_autoconf_opcode_block_period = 5,
    wlan_autoconf_opcode_allow_virtual_station_extensibility = 6,
    wlan_autoconf_opcode_end = 7,
}
Public Enum WLAN_AUTOCONF_OPCODE As Integer
    wlan_autoconf_opcode_start = 0
    wlan_autoconf_opcode_show_denied_networks = 1
    wlan_autoconf_opcode_power_setting = 2
    wlan_autoconf_opcode_only_use_gp_profiles_for_allowed_networks = 3
    wlan_autoconf_opcode_allow_explicit_creds = 4
    wlan_autoconf_opcode_block_period = 5
    wlan_autoconf_opcode_allow_virtual_station_extensibility = 6
    wlan_autoconf_opcode_end = 7
End Enum
import enum

class WLAN_AUTOCONF_OPCODE(enum.IntEnum):
    wlan_autoconf_opcode_start = 0
    wlan_autoconf_opcode_show_denied_networks = 1
    wlan_autoconf_opcode_power_setting = 2
    wlan_autoconf_opcode_only_use_gp_profiles_for_allowed_networks = 3
    wlan_autoconf_opcode_allow_explicit_creds = 4
    wlan_autoconf_opcode_block_period = 5
    wlan_autoconf_opcode_allow_virtual_station_extensibility = 6
    wlan_autoconf_opcode_end = 7
// WLAN_AUTOCONF_OPCODE
pub const wlan_autoconf_opcode_start: i32 = 0;
pub const wlan_autoconf_opcode_show_denied_networks: i32 = 1;
pub const wlan_autoconf_opcode_power_setting: i32 = 2;
pub const wlan_autoconf_opcode_only_use_gp_profiles_for_allowed_networks: i32 = 3;
pub const wlan_autoconf_opcode_allow_explicit_creds: i32 = 4;
pub const wlan_autoconf_opcode_block_period: i32 = 5;
pub const wlan_autoconf_opcode_allow_virtual_station_extensibility: i32 = 6;
pub const wlan_autoconf_opcode_end: i32 = 7;
// WLAN_AUTOCONF_OPCODE
const (
	wlan_autoconf_opcode_start int32 = 0
	wlan_autoconf_opcode_show_denied_networks int32 = 1
	wlan_autoconf_opcode_power_setting int32 = 2
	wlan_autoconf_opcode_only_use_gp_profiles_for_allowed_networks int32 = 3
	wlan_autoconf_opcode_allow_explicit_creds int32 = 4
	wlan_autoconf_opcode_block_period int32 = 5
	wlan_autoconf_opcode_allow_virtual_station_extensibility int32 = 6
	wlan_autoconf_opcode_end int32 = 7
)
const
  wlan_autoconf_opcode_start = 0;
  wlan_autoconf_opcode_show_denied_networks = 1;
  wlan_autoconf_opcode_power_setting = 2;
  wlan_autoconf_opcode_only_use_gp_profiles_for_allowed_networks = 3;
  wlan_autoconf_opcode_allow_explicit_creds = 4;
  wlan_autoconf_opcode_block_period = 5;
  wlan_autoconf_opcode_allow_virtual_station_extensibility = 6;
  wlan_autoconf_opcode_end = 7;
// WLAN_AUTOCONF_OPCODE
pub const wlan_autoconf_opcode_start: i32 = 0;
pub const wlan_autoconf_opcode_show_denied_networks: i32 = 1;
pub const wlan_autoconf_opcode_power_setting: i32 = 2;
pub const wlan_autoconf_opcode_only_use_gp_profiles_for_allowed_networks: i32 = 3;
pub const wlan_autoconf_opcode_allow_explicit_creds: i32 = 4;
pub const wlan_autoconf_opcode_block_period: i32 = 5;
pub const wlan_autoconf_opcode_allow_virtual_station_extensibility: i32 = 6;
pub const wlan_autoconf_opcode_end: i32 = 7;
const
  wlan_autoconf_opcode_start* = 0
  wlan_autoconf_opcode_show_denied_networks* = 1
  wlan_autoconf_opcode_power_setting* = 2
  wlan_autoconf_opcode_only_use_gp_profiles_for_allowed_networks* = 3
  wlan_autoconf_opcode_allow_explicit_creds* = 4
  wlan_autoconf_opcode_block_period* = 5
  wlan_autoconf_opcode_allow_virtual_station_extensibility* = 6
  wlan_autoconf_opcode_end* = 7
enum WLAN_AUTOCONF_OPCODE : int {
    wlan_autoconf_opcode_start = 0,
    wlan_autoconf_opcode_show_denied_networks = 1,
    wlan_autoconf_opcode_power_setting = 2,
    wlan_autoconf_opcode_only_use_gp_profiles_for_allowed_networks = 3,
    wlan_autoconf_opcode_allow_explicit_creds = 4,
    wlan_autoconf_opcode_block_period = 5,
    wlan_autoconf_opcode_allow_virtual_station_extensibility = 6,
    wlan_autoconf_opcode_end = 7,
}
#define global wlan_autoconf_opcode_start                                     0x0
#define global wlan_autoconf_opcode_show_denied_networks                      0x1
#define global wlan_autoconf_opcode_power_setting                             0x2
#define global wlan_autoconf_opcode_only_use_gp_profiles_for_allowed_networks 0x3
#define global wlan_autoconf_opcode_allow_explicit_creds                      0x4
#define global wlan_autoconf_opcode_block_period                              0x5
#define global wlan_autoconf_opcode_allow_virtual_station_extensibility       0x6
#define global wlan_autoconf_opcode_end                                       0x7