Share via


structure CERT_LOGOTYPE_INFO (wincrypt.h)

La structure CERT_LOGOTYPE_INFO contient des informations sur les données de logotype.

Syntaxe

typedef struct _CERT_LOGOTYPE_INFO {
  DWORD dwLogotypeInfoChoice;
  union {
    PCERT_LOGOTYPE_DATA      pLogotypeDirectInfo;
    PCERT_LOGOTYPE_REFERENCE pLogotypeIndirectInfo;
  } DUMMYUNIONNAME;
} CERT_LOGOTYPE_INFO, *PCERT_LOGOTYPE_INFO;

Membres

dwLogotypeInfoChoice

Spécifie le type de données de logotype. Il peut s’agir de l’une des valeurs suivantes.

Valeur Signification
CERT_LOGOTYPE_DIRECT_INFO_CHOICE
Les données de logotype sont disponibles directement. Le membre pLogotypeDirectInfo contient les données de logotype réelles.
CERT_LOGOTYPE_INDIRECT_INFO_CHOICE
Les données de logotype sont disponibles via une référence. Le membre pLogotypeIndirectInfo contient une référence aux informations de logotype.

DUMMYUNIONNAME

DUMMYUNIONNAME.pLogotypeDirectInfo

Adresse d’une structure de CERT_LOGOTYPE_DATA qui contient les données de logotype réelles. Ce membre est utilisé uniquement si le membre dwLogotypeInfoChoice contient CERT_LOGOTYPE_DIRECT_INFO_CHOICE.

DUMMYUNIONNAME.pLogotypeIndirectInfo

Adresse d’une structure de CERT_LOGOTYPE_REFERENCE qui contient des références aux données de logotype. Ce membre est utilisé uniquement si le membre dwLogotypeInfoChoice contient CERT_LOGOTYPE_INDIRECT_INFO_CHOICE.

Configuration requise

Condition requise Valeur
Client minimal pris en charge Windows Vista [applications de bureau uniquement]
Serveur minimal pris en charge Windows Server 2008 [applications de bureau uniquement]
En-tête wincrypt.h

Voir aussi

CERT_LOGOTYPE_EXT_INFO