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

CorPEKind

列挙型
基底型i4

メンバー 6

名前10進16進
peNot00x0
peILonly10x1
pe32BitRequired20x2
pe32Plus40x4
pe32Unmanaged80x8
pe32BitPreferred160x10

各言語での定義

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

typedef enum CorPEKind : int {
    peNot = 0,
    peILonly = 1,
    pe32BitRequired = 2,
    pe32Plus = 4,
    pe32Unmanaged = 8,
    pe32BitPreferred = 16
} CorPEKind;
public enum CorPEKind : int
{
    peNot = 0,
    peILonly = 1,
    pe32BitRequired = 2,
    pe32Plus = 4,
    pe32Unmanaged = 8,
    pe32BitPreferred = 16,
}
Public Enum CorPEKind As Integer
    peNot = 0
    peILonly = 1
    pe32BitRequired = 2
    pe32Plus = 4
    pe32Unmanaged = 8
    pe32BitPreferred = 16
End Enum
import enum

class CorPEKind(enum.IntEnum):
    peNot = 0
    peILonly = 1
    pe32BitRequired = 2
    pe32Plus = 4
    pe32Unmanaged = 8
    pe32BitPreferred = 16
// CorPEKind
pub const peNot: i32 = 0;
pub const peILonly: i32 = 1;
pub const pe32BitRequired: i32 = 2;
pub const pe32Plus: i32 = 4;
pub const pe32Unmanaged: i32 = 8;
pub const pe32BitPreferred: i32 = 16;
// CorPEKind
const (
	peNot int32 = 0
	peILonly int32 = 1
	pe32BitRequired int32 = 2
	pe32Plus int32 = 4
	pe32Unmanaged int32 = 8
	pe32BitPreferred int32 = 16
)
const
  peNot = 0;
  peILonly = 1;
  pe32BitRequired = 2;
  pe32Plus = 4;
  pe32Unmanaged = 8;
  pe32BitPreferred = 16;
// CorPEKind
pub const peNot: i32 = 0;
pub const peILonly: i32 = 1;
pub const pe32BitRequired: i32 = 2;
pub const pe32Plus: i32 = 4;
pub const pe32Unmanaged: i32 = 8;
pub const pe32BitPreferred: i32 = 16;
const
  peNot* = 0
  peILonly* = 1
  pe32BitRequired* = 2
  pe32Plus* = 4
  pe32Unmanaged* = 8
  pe32BitPreferred* = 16
enum CorPEKind : int {
    peNot = 0,
    peILonly = 1,
    pe32BitRequired = 2,
    pe32Plus = 4,
    pe32Unmanaged = 8,
    pe32BitPreferred = 16,
}
#define global peNot            0x0
#define global peILonly         0x1
#define global pe32BitRequired  0x2
#define global pe32Plus         0x4
#define global pe32Unmanaged    0x8
#define global pe32BitPreferred 0x10