Win32 API 日本語リファレンス
ホームSystem.Diagnostics.Debug.Extensions › SignatureComparison

SignatureComparison

列挙型
基底型i4

メンバー 5

名前10進16進
Unrelated00x0
Ambiguous10x1
LessSpecific20x2
MoreSpecific30x3
Identical40x4

各言語での定義

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

typedef enum SignatureComparison : int {
    Unrelated = 0,
    Ambiguous = 1,
    LessSpecific = 2,
    MoreSpecific = 3,
    Identical = 4
} SignatureComparison;
public enum SignatureComparison : int
{
    Unrelated = 0,
    Ambiguous = 1,
    LessSpecific = 2,
    MoreSpecific = 3,
    Identical = 4,
}
Public Enum SignatureComparison As Integer
    Unrelated = 0
    Ambiguous = 1
    LessSpecific = 2
    MoreSpecific = 3
    Identical = 4
End Enum
import enum

class SignatureComparison(enum.IntEnum):
    Unrelated = 0
    Ambiguous = 1
    LessSpecific = 2
    MoreSpecific = 3
    Identical = 4
// SignatureComparison
pub const Unrelated: i32 = 0;
pub const Ambiguous: i32 = 1;
pub const LessSpecific: i32 = 2;
pub const MoreSpecific: i32 = 3;
pub const Identical: i32 = 4;
// SignatureComparison
const (
	Unrelated int32 = 0
	Ambiguous int32 = 1
	LessSpecific int32 = 2
	MoreSpecific int32 = 3
	Identical int32 = 4
)
const
  Unrelated = 0;
  Ambiguous = 1;
  LessSpecific = 2;
  MoreSpecific = 3;
  Identical = 4;
// SignatureComparison
pub const Unrelated: i32 = 0;
pub const Ambiguous: i32 = 1;
pub const LessSpecific: i32 = 2;
pub const MoreSpecific: i32 = 3;
pub const Identical: i32 = 4;
const
  Unrelated* = 0
  Ambiguous* = 1
  LessSpecific* = 2
  MoreSpecific* = 3
  Identical* = 4
enum SignatureComparison : int {
    Unrelated = 0,
    Ambiguous = 1,
    LessSpecific = 2,
    MoreSpecific = 3,
    Identical = 4,
}
#define global Unrelated    0x0
#define global Ambiguous    0x1
#define global LessSpecific 0x2
#define global MoreSpecific 0x3
#define global Identical    0x4