Win32 API 日本語リファレンス
ホームSystem.Com › EXTCONN

EXTCONN

列挙型
基底型i4

メンバー 3

名前10進16進
EXTCONN_STRONG10x1
EXTCONN_WEAK20x2
EXTCONN_CALLABLE40x4

各言語での定義

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

typedef enum EXTCONN : int {
    EXTCONN_STRONG = 1,
    EXTCONN_WEAK = 2,
    EXTCONN_CALLABLE = 4
} EXTCONN;
public enum EXTCONN : int
{
    EXTCONN_STRONG = 1,
    EXTCONN_WEAK = 2,
    EXTCONN_CALLABLE = 4,
}
Public Enum EXTCONN As Integer
    EXTCONN_STRONG = 1
    EXTCONN_WEAK = 2
    EXTCONN_CALLABLE = 4
End Enum
import enum

class EXTCONN(enum.IntEnum):
    EXTCONN_STRONG = 1
    EXTCONN_WEAK = 2
    EXTCONN_CALLABLE = 4
// EXTCONN
pub const EXTCONN_STRONG: i32 = 1;
pub const EXTCONN_WEAK: i32 = 2;
pub const EXTCONN_CALLABLE: i32 = 4;
// EXTCONN
const (
	EXTCONN_STRONG int32 = 1
	EXTCONN_WEAK int32 = 2
	EXTCONN_CALLABLE int32 = 4
)
const
  EXTCONN_STRONG = 1;
  EXTCONN_WEAK = 2;
  EXTCONN_CALLABLE = 4;
// EXTCONN
pub const EXTCONN_STRONG: i32 = 1;
pub const EXTCONN_WEAK: i32 = 2;
pub const EXTCONN_CALLABLE: i32 = 4;
const
  EXTCONN_STRONG* = 1
  EXTCONN_WEAK* = 2
  EXTCONN_CALLABLE* = 4
enum EXTCONN : int {
    EXTCONN_STRONG = 1,
    EXTCONN_WEAK = 2,
    EXTCONN_CALLABLE = 4,
}
#define global EXTCONN_STRONG   0x1
#define global EXTCONN_WEAK     0x2
#define global EXTCONN_CALLABLE 0x4