RUNTIME_INFO_FLAGS Enumeration

Contains values that indicate what information about the common language runtime (CLR) should be returned.

typedef enum {

    RUNTIME_INFO_UPGRADE_VERSION         = 0x01,
    RUNTIME_INFO_REQUEST_IA64            = 0x02,
    RUNTIME_INFO_REQUEST_AMD64           = 0x04,
    RUNTIME_INFO_REQUEST_X86             = 0x08,
    RUNTIME_INFO_DONT_RETURN_DIRECTORY   = 0x10,
    RUNTIME_INFO_DONT_RETURN_VERSION     = 0x20,
    RUNTIME_INFO_DONT_SHOW_ERROR_DIALOG  = 0x40

} RUNTIME_INFO_FLAGS;

Members

Member Description

RUNTIME_INFO_DONT_RETURN_DIRECTORY

Indicates that directory information should not be included.

RUNTIME_INFO_DONT_RETURN_VERSION

Indicates that version information should not be included.

RUNTIME_INFO_DONT_SHOW_ERROR_DIALOG

Indicates that an error dialog box should not be shown upon failure.

RUNTIME_INFO_REQUEST_AMD64

Indicates a request for information about an AMD-64-compatible version of the runtime.

RUNTIME_INFO_REQUEST_IA64

Indicates a request for information about an IA-64-compatible version of the runtime.

RUNTIME_INFO_REQUEST_X86

Indicates a request for information about an x86-compatible version of the runtime.

RUNTIME_INFO_UPGRADE_VERSION

Indicates that version upgrade information should be included.

Remarks

The following platform architecture flags can be specified only one at a time and cannot be combined:

  • RUNTIME_INFO_REQUEST_IA64

  • RUNTIME_INFO_REQUEST_AMD64

  • RUNTIME_INFO_REQUEST_X86

Requirements

Platforms: Windows 2000, Windows XP, Windows Server 2003 family

Header: MSCorEE.idl

Library: MSCorEE.dll

.NET Framework Version: 2.0

See Also

Other Resources

Hosting Enumerations