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

DOT11_KEY_DIRECTION

列挙型
基底型i4

メンバー 3

名前10進16進
dot11_key_direction_both10x1
dot11_key_direction_inbound20x2
dot11_key_direction_outbound30x3

各言語での定義

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

typedef enum DOT11_KEY_DIRECTION : int {
    dot11_key_direction_both = 1,
    dot11_key_direction_inbound = 2,
    dot11_key_direction_outbound = 3
} DOT11_KEY_DIRECTION;
public enum DOT11_KEY_DIRECTION : int
{
    dot11_key_direction_both = 1,
    dot11_key_direction_inbound = 2,
    dot11_key_direction_outbound = 3,
}
Public Enum DOT11_KEY_DIRECTION As Integer
    dot11_key_direction_both = 1
    dot11_key_direction_inbound = 2
    dot11_key_direction_outbound = 3
End Enum
import enum

class DOT11_KEY_DIRECTION(enum.IntEnum):
    dot11_key_direction_both = 1
    dot11_key_direction_inbound = 2
    dot11_key_direction_outbound = 3
// DOT11_KEY_DIRECTION
pub const dot11_key_direction_both: i32 = 1;
pub const dot11_key_direction_inbound: i32 = 2;
pub const dot11_key_direction_outbound: i32 = 3;
// DOT11_KEY_DIRECTION
const (
	dot11_key_direction_both int32 = 1
	dot11_key_direction_inbound int32 = 2
	dot11_key_direction_outbound int32 = 3
)
const
  dot11_key_direction_both = 1;
  dot11_key_direction_inbound = 2;
  dot11_key_direction_outbound = 3;
// DOT11_KEY_DIRECTION
pub const dot11_key_direction_both: i32 = 1;
pub const dot11_key_direction_inbound: i32 = 2;
pub const dot11_key_direction_outbound: i32 = 3;
const
  dot11_key_direction_both* = 1
  dot11_key_direction_inbound* = 2
  dot11_key_direction_outbound* = 3
enum DOT11_KEY_DIRECTION : int {
    dot11_key_direction_both = 1,
    dot11_key_direction_inbound = 2,
    dot11_key_direction_outbound = 3,
}
#define global dot11_key_direction_both     0x1
#define global dot11_key_direction_inbound  0x2
#define global dot11_key_direction_outbound 0x3