ホーム › System.WinRT.Metadata › CorPEKind
CorPEKind
列挙型メンバー 6
| 名前 | 10進 | 16進 |
|---|---|---|
| peNot | 0 | 0x0 |
| peILonly | 1 | 0x1 |
| pe32BitRequired | 2 | 0x2 |
| pe32Plus | 4 | 0x4 |
| pe32Unmanaged | 8 | 0x8 |
| pe32BitPreferred | 16 | 0x10 |
各言語での定義
列挙メンバーの定義。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 Enumimport 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* = 16enum 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