Win32 API 日本語リファレンス
ホームSystem.ClrHosting › RUNTIME_INFO_FLAGS

RUNTIME_INFO_FLAGS

列挙型
基底型i4

メンバー 9

名前10進16進
RUNTIME_INFO_UPGRADE_VERSION10x1
RUNTIME_INFO_REQUEST_IA6420x2
RUNTIME_INFO_REQUEST_AMD6440x4
RUNTIME_INFO_REQUEST_X8680x8
RUNTIME_INFO_DONT_RETURN_DIRECTORY160x10
RUNTIME_INFO_DONT_RETURN_VERSION320x20
RUNTIME_INFO_DONT_SHOW_ERROR_DIALOG640x40
RUNTIME_INFO_IGNORE_ERROR_MODE40960x1000
RUNTIME_INFO_REQUEST_ARM6481920x2000

各言語での定義

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

typedef enum RUNTIME_INFO_FLAGS : int {
    RUNTIME_INFO_UPGRADE_VERSION = 1,
    RUNTIME_INFO_REQUEST_IA64 = 2,
    RUNTIME_INFO_REQUEST_AMD64 = 4,
    RUNTIME_INFO_REQUEST_X86 = 8,
    RUNTIME_INFO_DONT_RETURN_DIRECTORY = 16,
    RUNTIME_INFO_DONT_RETURN_VERSION = 32,
    RUNTIME_INFO_DONT_SHOW_ERROR_DIALOG = 64,
    RUNTIME_INFO_IGNORE_ERROR_MODE = 4096,
    RUNTIME_INFO_REQUEST_ARM64 = 8192
} RUNTIME_INFO_FLAGS;
public enum RUNTIME_INFO_FLAGS : int
{
    RUNTIME_INFO_UPGRADE_VERSION = 1,
    RUNTIME_INFO_REQUEST_IA64 = 2,
    RUNTIME_INFO_REQUEST_AMD64 = 4,
    RUNTIME_INFO_REQUEST_X86 = 8,
    RUNTIME_INFO_DONT_RETURN_DIRECTORY = 16,
    RUNTIME_INFO_DONT_RETURN_VERSION = 32,
    RUNTIME_INFO_DONT_SHOW_ERROR_DIALOG = 64,
    RUNTIME_INFO_IGNORE_ERROR_MODE = 4096,
    RUNTIME_INFO_REQUEST_ARM64 = 8192,
}
Public Enum RUNTIME_INFO_FLAGS As Integer
    RUNTIME_INFO_UPGRADE_VERSION = 1
    RUNTIME_INFO_REQUEST_IA64 = 2
    RUNTIME_INFO_REQUEST_AMD64 = 4
    RUNTIME_INFO_REQUEST_X86 = 8
    RUNTIME_INFO_DONT_RETURN_DIRECTORY = 16
    RUNTIME_INFO_DONT_RETURN_VERSION = 32
    RUNTIME_INFO_DONT_SHOW_ERROR_DIALOG = 64
    RUNTIME_INFO_IGNORE_ERROR_MODE = 4096
    RUNTIME_INFO_REQUEST_ARM64 = 8192
End Enum
import enum

class RUNTIME_INFO_FLAGS(enum.IntEnum):
    RUNTIME_INFO_UPGRADE_VERSION = 1
    RUNTIME_INFO_REQUEST_IA64 = 2
    RUNTIME_INFO_REQUEST_AMD64 = 4
    RUNTIME_INFO_REQUEST_X86 = 8
    RUNTIME_INFO_DONT_RETURN_DIRECTORY = 16
    RUNTIME_INFO_DONT_RETURN_VERSION = 32
    RUNTIME_INFO_DONT_SHOW_ERROR_DIALOG = 64
    RUNTIME_INFO_IGNORE_ERROR_MODE = 4096
    RUNTIME_INFO_REQUEST_ARM64 = 8192
// RUNTIME_INFO_FLAGS
pub const RUNTIME_INFO_UPGRADE_VERSION: i32 = 1;
pub const RUNTIME_INFO_REQUEST_IA64: i32 = 2;
pub const RUNTIME_INFO_REQUEST_AMD64: i32 = 4;
pub const RUNTIME_INFO_REQUEST_X86: i32 = 8;
pub const RUNTIME_INFO_DONT_RETURN_DIRECTORY: i32 = 16;
pub const RUNTIME_INFO_DONT_RETURN_VERSION: i32 = 32;
pub const RUNTIME_INFO_DONT_SHOW_ERROR_DIALOG: i32 = 64;
pub const RUNTIME_INFO_IGNORE_ERROR_MODE: i32 = 4096;
pub const RUNTIME_INFO_REQUEST_ARM64: i32 = 8192;
// RUNTIME_INFO_FLAGS
const (
	RUNTIME_INFO_UPGRADE_VERSION int32 = 1
	RUNTIME_INFO_REQUEST_IA64 int32 = 2
	RUNTIME_INFO_REQUEST_AMD64 int32 = 4
	RUNTIME_INFO_REQUEST_X86 int32 = 8
	RUNTIME_INFO_DONT_RETURN_DIRECTORY int32 = 16
	RUNTIME_INFO_DONT_RETURN_VERSION int32 = 32
	RUNTIME_INFO_DONT_SHOW_ERROR_DIALOG int32 = 64
	RUNTIME_INFO_IGNORE_ERROR_MODE int32 = 4096
	RUNTIME_INFO_REQUEST_ARM64 int32 = 8192
)
const
  RUNTIME_INFO_UPGRADE_VERSION = 1;
  RUNTIME_INFO_REQUEST_IA64 = 2;
  RUNTIME_INFO_REQUEST_AMD64 = 4;
  RUNTIME_INFO_REQUEST_X86 = 8;
  RUNTIME_INFO_DONT_RETURN_DIRECTORY = 16;
  RUNTIME_INFO_DONT_RETURN_VERSION = 32;
  RUNTIME_INFO_DONT_SHOW_ERROR_DIALOG = 64;
  RUNTIME_INFO_IGNORE_ERROR_MODE = 4096;
  RUNTIME_INFO_REQUEST_ARM64 = 8192;
// RUNTIME_INFO_FLAGS
pub const RUNTIME_INFO_UPGRADE_VERSION: i32 = 1;
pub const RUNTIME_INFO_REQUEST_IA64: i32 = 2;
pub const RUNTIME_INFO_REQUEST_AMD64: i32 = 4;
pub const RUNTIME_INFO_REQUEST_X86: i32 = 8;
pub const RUNTIME_INFO_DONT_RETURN_DIRECTORY: i32 = 16;
pub const RUNTIME_INFO_DONT_RETURN_VERSION: i32 = 32;
pub const RUNTIME_INFO_DONT_SHOW_ERROR_DIALOG: i32 = 64;
pub const RUNTIME_INFO_IGNORE_ERROR_MODE: i32 = 4096;
pub const RUNTIME_INFO_REQUEST_ARM64: i32 = 8192;
const
  RUNTIME_INFO_UPGRADE_VERSION* = 1
  RUNTIME_INFO_REQUEST_IA64* = 2
  RUNTIME_INFO_REQUEST_AMD64* = 4
  RUNTIME_INFO_REQUEST_X86* = 8
  RUNTIME_INFO_DONT_RETURN_DIRECTORY* = 16
  RUNTIME_INFO_DONT_RETURN_VERSION* = 32
  RUNTIME_INFO_DONT_SHOW_ERROR_DIALOG* = 64
  RUNTIME_INFO_IGNORE_ERROR_MODE* = 4096
  RUNTIME_INFO_REQUEST_ARM64* = 8192
enum RUNTIME_INFO_FLAGS : int {
    RUNTIME_INFO_UPGRADE_VERSION = 1,
    RUNTIME_INFO_REQUEST_IA64 = 2,
    RUNTIME_INFO_REQUEST_AMD64 = 4,
    RUNTIME_INFO_REQUEST_X86 = 8,
    RUNTIME_INFO_DONT_RETURN_DIRECTORY = 16,
    RUNTIME_INFO_DONT_RETURN_VERSION = 32,
    RUNTIME_INFO_DONT_SHOW_ERROR_DIALOG = 64,
    RUNTIME_INFO_IGNORE_ERROR_MODE = 4096,
    RUNTIME_INFO_REQUEST_ARM64 = 8192,
}
#define global RUNTIME_INFO_UPGRADE_VERSION        0x1
#define global RUNTIME_INFO_REQUEST_IA64           0x2
#define global RUNTIME_INFO_REQUEST_AMD64          0x4
#define global RUNTIME_INFO_REQUEST_X86            0x8
#define global RUNTIME_INFO_DONT_RETURN_DIRECTORY  0x10
#define global RUNTIME_INFO_DONT_RETURN_VERSION    0x20
#define global RUNTIME_INFO_DONT_SHOW_ERROR_DIALOG 0x40
#define global RUNTIME_INFO_IGNORE_ERROR_MODE      0x1000
#define global RUNTIME_INFO_REQUEST_ARM64          0x2000