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

CorILMethodSect

列挙型
基底型i4

メンバー 6

名前10進16進
CorILMethod_Sect_Reserved00x0
CorILMethod_Sect_EHTable10x1
CorILMethod_Sect_OptILTable20x2
CorILMethod_Sect_KindMask630x3F
CorILMethod_Sect_FatFormat640x40
CorILMethod_Sect_MoreSects1280x80

各言語での定義

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

typedef enum CorILMethodSect : int {
    CorILMethod_Sect_Reserved = 0,
    CorILMethod_Sect_EHTable = 1,
    CorILMethod_Sect_OptILTable = 2,
    CorILMethod_Sect_KindMask = 63,
    CorILMethod_Sect_FatFormat = 64,
    CorILMethod_Sect_MoreSects = 128
} CorILMethodSect;
public enum CorILMethodSect : int
{
    CorILMethod_Sect_Reserved = 0,
    CorILMethod_Sect_EHTable = 1,
    CorILMethod_Sect_OptILTable = 2,
    CorILMethod_Sect_KindMask = 63,
    CorILMethod_Sect_FatFormat = 64,
    CorILMethod_Sect_MoreSects = 128,
}
Public Enum CorILMethodSect As Integer
    CorILMethod_Sect_Reserved = 0
    CorILMethod_Sect_EHTable = 1
    CorILMethod_Sect_OptILTable = 2
    CorILMethod_Sect_KindMask = 63
    CorILMethod_Sect_FatFormat = 64
    CorILMethod_Sect_MoreSects = 128
End Enum
import enum

class CorILMethodSect(enum.IntEnum):
    CorILMethod_Sect_Reserved = 0
    CorILMethod_Sect_EHTable = 1
    CorILMethod_Sect_OptILTable = 2
    CorILMethod_Sect_KindMask = 63
    CorILMethod_Sect_FatFormat = 64
    CorILMethod_Sect_MoreSects = 128
// CorILMethodSect
pub const CorILMethod_Sect_Reserved: i32 = 0;
pub const CorILMethod_Sect_EHTable: i32 = 1;
pub const CorILMethod_Sect_OptILTable: i32 = 2;
pub const CorILMethod_Sect_KindMask: i32 = 63;
pub const CorILMethod_Sect_FatFormat: i32 = 64;
pub const CorILMethod_Sect_MoreSects: i32 = 128;
// CorILMethodSect
const (
	CorILMethod_Sect_Reserved int32 = 0
	CorILMethod_Sect_EHTable int32 = 1
	CorILMethod_Sect_OptILTable int32 = 2
	CorILMethod_Sect_KindMask int32 = 63
	CorILMethod_Sect_FatFormat int32 = 64
	CorILMethod_Sect_MoreSects int32 = 128
)
const
  CorILMethod_Sect_Reserved = 0;
  CorILMethod_Sect_EHTable = 1;
  CorILMethod_Sect_OptILTable = 2;
  CorILMethod_Sect_KindMask = 63;
  CorILMethod_Sect_FatFormat = 64;
  CorILMethod_Sect_MoreSects = 128;
// CorILMethodSect
pub const CorILMethod_Sect_Reserved: i32 = 0;
pub const CorILMethod_Sect_EHTable: i32 = 1;
pub const CorILMethod_Sect_OptILTable: i32 = 2;
pub const CorILMethod_Sect_KindMask: i32 = 63;
pub const CorILMethod_Sect_FatFormat: i32 = 64;
pub const CorILMethod_Sect_MoreSects: i32 = 128;
const
  CorILMethod_Sect_Reserved* = 0
  CorILMethod_Sect_EHTable* = 1
  CorILMethod_Sect_OptILTable* = 2
  CorILMethod_Sect_KindMask* = 63
  CorILMethod_Sect_FatFormat* = 64
  CorILMethod_Sect_MoreSects* = 128
enum CorILMethodSect : int {
    CorILMethod_Sect_Reserved = 0,
    CorILMethod_Sect_EHTable = 1,
    CorILMethod_Sect_OptILTable = 2,
    CorILMethod_Sect_KindMask = 63,
    CorILMethod_Sect_FatFormat = 64,
    CorILMethod_Sect_MoreSects = 128,
}
#define global CorILMethod_Sect_Reserved   0x0
#define global CorILMethod_Sect_EHTable    0x1
#define global CorILMethod_Sect_OptILTable 0x2
#define global CorILMethod_Sect_KindMask   0x3F
#define global CorILMethod_Sect_FatFormat  0x40
#define global CorILMethod_Sect_MoreSects  0x80