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

DTCLUXLN

列挙型
基底型i4

メンバー 2

名前10進16進
DTCLUXLN_COLD10x1
DTCLUXLN_WARM20x2

各言語での定義

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

typedef enum DTCLUXLN : int {
    DTCLUXLN_COLD = 1,
    DTCLUXLN_WARM = 2
} DTCLUXLN;
public enum DTCLUXLN : int
{
    DTCLUXLN_COLD = 1,
    DTCLUXLN_WARM = 2,
}
Public Enum DTCLUXLN As Integer
    DTCLUXLN_COLD = 1
    DTCLUXLN_WARM = 2
End Enum
import enum

class DTCLUXLN(enum.IntEnum):
    DTCLUXLN_COLD = 1
    DTCLUXLN_WARM = 2
// DTCLUXLN
pub const DTCLUXLN_COLD: i32 = 1;
pub const DTCLUXLN_WARM: i32 = 2;
// DTCLUXLN
const (
	DTCLUXLN_COLD int32 = 1
	DTCLUXLN_WARM int32 = 2
)
const
  DTCLUXLN_COLD = 1;
  DTCLUXLN_WARM = 2;
// DTCLUXLN
pub const DTCLUXLN_COLD: i32 = 1;
pub const DTCLUXLN_WARM: i32 = 2;
const
  DTCLUXLN_COLD* = 1
  DTCLUXLN_WARM* = 2
enum DTCLUXLN : int {
    DTCLUXLN_COLD = 1,
    DTCLUXLN_WARM = 2,
}
#define global DTCLUXLN_COLD 0x1
#define global DTCLUXLN_WARM 0x2