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

CorLinkerOptions

列挙型
基底型i4

メンバー 2

名前10進16進
MDAssembly00x0
MDNetModule10x1

各言語での定義

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

typedef enum CorLinkerOptions : int {
    MDAssembly = 0,
    MDNetModule = 1
} CorLinkerOptions;
public enum CorLinkerOptions : int
{
    MDAssembly = 0,
    MDNetModule = 1,
}
Public Enum CorLinkerOptions As Integer
    MDAssembly = 0
    MDNetModule = 1
End Enum
import enum

class CorLinkerOptions(enum.IntEnum):
    MDAssembly = 0
    MDNetModule = 1
// CorLinkerOptions
pub const MDAssembly: i32 = 0;
pub const MDNetModule: i32 = 1;
// CorLinkerOptions
const (
	MDAssembly int32 = 0
	MDNetModule int32 = 1
)
const
  MDAssembly = 0;
  MDNetModule = 1;
// CorLinkerOptions
pub const MDAssembly: i32 = 0;
pub const MDNetModule: i32 = 1;
const
  MDAssembly* = 0
  MDNetModule* = 1
enum CorLinkerOptions : int {
    MDAssembly = 0,
    MDNetModule = 1,
}
#define global MDAssembly  0x0
#define global MDNetModule 0x1