Win32 API 日本語リファレンス
ホームSystem.WinRT.Metadata › CorNativeLinkType

CorNativeLinkType

列挙型
基底型i4

メンバー 6

名前10進16進
nltNone10x1
nltAnsi20x2
nltUnicode30x3
nltAuto40x4
nltOle50x5
nltMaxValue70x7

各言語での定義

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

typedef enum CorNativeLinkType : int {
    nltNone = 1,
    nltAnsi = 2,
    nltUnicode = 3,
    nltAuto = 4,
    nltOle = 5,
    nltMaxValue = 7
} CorNativeLinkType;
public enum CorNativeLinkType : int
{
    nltNone = 1,
    nltAnsi = 2,
    nltUnicode = 3,
    nltAuto = 4,
    nltOle = 5,
    nltMaxValue = 7,
}
Public Enum CorNativeLinkType As Integer
    nltNone = 1
    nltAnsi = 2
    nltUnicode = 3
    nltAuto = 4
    nltOle = 5
    nltMaxValue = 7
End Enum
import enum

class CorNativeLinkType(enum.IntEnum):
    nltNone = 1
    nltAnsi = 2
    nltUnicode = 3
    nltAuto = 4
    nltOle = 5
    nltMaxValue = 7
// CorNativeLinkType
pub const nltNone: i32 = 1;
pub const nltAnsi: i32 = 2;
pub const nltUnicode: i32 = 3;
pub const nltAuto: i32 = 4;
pub const nltOle: i32 = 5;
pub const nltMaxValue: i32 = 7;
// CorNativeLinkType
const (
	nltNone int32 = 1
	nltAnsi int32 = 2
	nltUnicode int32 = 3
	nltAuto int32 = 4
	nltOle int32 = 5
	nltMaxValue int32 = 7
)
const
  nltNone = 1;
  nltAnsi = 2;
  nltUnicode = 3;
  nltAuto = 4;
  nltOle = 5;
  nltMaxValue = 7;
// CorNativeLinkType
pub const nltNone: i32 = 1;
pub const nltAnsi: i32 = 2;
pub const nltUnicode: i32 = 3;
pub const nltAuto: i32 = 4;
pub const nltOle: i32 = 5;
pub const nltMaxValue: i32 = 7;
const
  nltNone* = 1
  nltAnsi* = 2
  nltUnicode* = 3
  nltAuto* = 4
  nltOle* = 5
  nltMaxValue* = 7
enum CorNativeLinkType : int {
    nltNone = 1,
    nltAnsi = 2,
    nltUnicode = 3,
    nltAuto = 4,
    nltOle = 5,
    nltMaxValue = 7,
}
#define global nltNone     0x1
#define global nltAnsi     0x2
#define global nltUnicode  0x3
#define global nltAuto     0x4
#define global nltOle      0x5
#define global nltMaxValue 0x7