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

CH_DESCRIPTION_TYPE

列挙型
基底型i4

メンバー 3

名前10進16進
ch_description_type_logical10x1
ch_description_type_center_frequency20x2
ch_description_type_phy_specific30x3

各言語での定義

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

typedef enum CH_DESCRIPTION_TYPE : int {
    ch_description_type_logical = 1,
    ch_description_type_center_frequency = 2,
    ch_description_type_phy_specific = 3
} CH_DESCRIPTION_TYPE;
public enum CH_DESCRIPTION_TYPE : int
{
    ch_description_type_logical = 1,
    ch_description_type_center_frequency = 2,
    ch_description_type_phy_specific = 3,
}
Public Enum CH_DESCRIPTION_TYPE As Integer
    ch_description_type_logical = 1
    ch_description_type_center_frequency = 2
    ch_description_type_phy_specific = 3
End Enum
import enum

class CH_DESCRIPTION_TYPE(enum.IntEnum):
    ch_description_type_logical = 1
    ch_description_type_center_frequency = 2
    ch_description_type_phy_specific = 3
// CH_DESCRIPTION_TYPE
pub const ch_description_type_logical: i32 = 1;
pub const ch_description_type_center_frequency: i32 = 2;
pub const ch_description_type_phy_specific: i32 = 3;
// CH_DESCRIPTION_TYPE
const (
	ch_description_type_logical int32 = 1
	ch_description_type_center_frequency int32 = 2
	ch_description_type_phy_specific int32 = 3
)
const
  ch_description_type_logical = 1;
  ch_description_type_center_frequency = 2;
  ch_description_type_phy_specific = 3;
// CH_DESCRIPTION_TYPE
pub const ch_description_type_logical: i32 = 1;
pub const ch_description_type_center_frequency: i32 = 2;
pub const ch_description_type_phy_specific: i32 = 3;
const
  ch_description_type_logical* = 1
  ch_description_type_center_frequency* = 2
  ch_description_type_phy_specific* = 3
enum CH_DESCRIPTION_TYPE : int {
    ch_description_type_logical = 1,
    ch_description_type_center_frequency = 2,
    ch_description_type_phy_specific = 3,
}
#define global ch_description_type_logical          0x1
#define global ch_description_type_center_frequency 0x2
#define global ch_description_type_phy_specific     0x3