Partager via


RUNTIME_INFO_FLAGS, énumération

Contient des valeurs qui indiquent les informations à retourner sur le Common Language Runtime (CLR).

Syntaxe

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_IGNORE_ERROR_MODE           = 0x1000  
  
} RUNTIME_INFO_FLAGS;  

Membres

Membre Description
RUNTIME_INFO_DONT_RETURN_DIRECTORY Indique que les informations de répertoire ne doivent pas être incluses.
RUNTIME_INFO_DONT_RETURN_VERSION Indique que les informations de version ne doivent pas être incluses.
RUNTIME_INFO_DONT_SHOW_ERROR_DIALOG Indique qu’une boîte de dialogue d’erreur ne doit pas être affichée en cas d’échec.
RUNTIME_INFO_IGNORE_ERROR_MODE Indique que les effets de l’appel de la fonction SetErrorMode avec l’indicateur SEM_FAILCRITICALERRORS doivent être remplacés. Autrement dit, une boîte de dialogue d’installation doit s’afficher en cas d’échec, au lieu d’être supprimée.
RUNTIME_INFO_REQUEST_AMD64 Indique une demande d’informations sur une version compatible AMD-64 du runtime.
RUNTIME_INFO_REQUEST_IA64 Indique une demande d’informations sur une version compatible IA-64 du runtime.
RUNTIME_INFO_REQUEST_X86 Indique une demande d’informations sur une version compatible x86 du runtime.
RUNTIME_INFO_UPGRADE_VERSION Indique que les informations sur la mise à niveau de la version doivent être incluses.

Notes

Les indicateurs d’architecture de plateforme suivants ne peuvent être spécifiés qu’un seul à la fois et ne peuvent pas être combinés :

  • RUNTIME_INFO_REQUEST_IA64

  • RUNTIME_INFO_REQUEST_AMD64

  • RUNTIME_INFO_REQUEST_X86

Spécifications

Plateformes : Consultez Configuration requise.

En-tête : MSCorEE.h

Bibliothèque : MSCorEE.dll

Versions de .NET Framework : disponible depuis la version 2.0

Voir aussi