Win32 API 日本語リファレンス
ホームNetworking.WindowsWebServices › WS_IP_VERSION

WS_IP_VERSION

列挙型
基底型i4

メンバー 3

名前10進16進
WS_IP_VERSION_410x1
WS_IP_VERSION_620x2
WS_IP_VERSION_AUTO30x3

各言語での定義

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

typedef enum WS_IP_VERSION : int {
    WS_IP_VERSION_4 = 1,
    WS_IP_VERSION_6 = 2,
    WS_IP_VERSION_AUTO = 3
} WS_IP_VERSION;
public enum WS_IP_VERSION : int
{
    WS_IP_VERSION_4 = 1,
    WS_IP_VERSION_6 = 2,
    WS_IP_VERSION_AUTO = 3,
}
Public Enum WS_IP_VERSION As Integer
    WS_IP_VERSION_4 = 1
    WS_IP_VERSION_6 = 2
    WS_IP_VERSION_AUTO = 3
End Enum
import enum

class WS_IP_VERSION(enum.IntEnum):
    WS_IP_VERSION_4 = 1
    WS_IP_VERSION_6 = 2
    WS_IP_VERSION_AUTO = 3
// WS_IP_VERSION
pub const WS_IP_VERSION_4: i32 = 1;
pub const WS_IP_VERSION_6: i32 = 2;
pub const WS_IP_VERSION_AUTO: i32 = 3;
// WS_IP_VERSION
const (
	WS_IP_VERSION_4 int32 = 1
	WS_IP_VERSION_6 int32 = 2
	WS_IP_VERSION_AUTO int32 = 3
)
const
  WS_IP_VERSION_4 = 1;
  WS_IP_VERSION_6 = 2;
  WS_IP_VERSION_AUTO = 3;
// WS_IP_VERSION
pub const WS_IP_VERSION_4: i32 = 1;
pub const WS_IP_VERSION_6: i32 = 2;
pub const WS_IP_VERSION_AUTO: i32 = 3;
const
  WS_IP_VERSION_4* = 1
  WS_IP_VERSION_6* = 2
  WS_IP_VERSION_AUTO* = 3
enum WS_IP_VERSION : int {
    WS_IP_VERSION_4 = 1,
    WS_IP_VERSION_6 = 2,
    WS_IP_VERSION_AUTO = 3,
}
#define global WS_IP_VERSION_4    0x1
#define global WS_IP_VERSION_6    0x2
#define global WS_IP_VERSION_AUTO 0x3