CERT_LOGOTYPE_INFO structure (wincrypt.h)

The CERT_LOGOTYPE_INFO structure contains information about logotype data.

Syntax

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

Members

dwLogotypeInfoChoice

Specifies the type of logotype data. This can be one of the following values.

Value Meaning
CERT_LOGOTYPE_DIRECT_INFO_CHOICE
The logotype data is available directly. The pLogotypeDirectInfo member contains the actual logotype data.
CERT_LOGOTYPE_INDIRECT_INFO_CHOICE
The logotype data is available through a reference. The pLogotypeIndirectInfo member contains a reference to the logotype information.

DUMMYUNIONNAME

DUMMYUNIONNAME.pLogotypeDirectInfo

The address of a CERT_LOGOTYPE_DATA structure that contains the actual logotype data. This member is only used if the dwLogotypeInfoChoice member contains CERT_LOGOTYPE_DIRECT_INFO_CHOICE.

DUMMYUNIONNAME.pLogotypeIndirectInfo

The address of a CERT_LOGOTYPE_REFERENCE structure that contains references to the logotype data. This member is only used if the dwLogotypeInfoChoice member contains CERT_LOGOTYPE_INDIRECT_INFO_CHOICE.

Requirements

Requirement Value
Minimum supported client Windows Vista [desktop apps only]
Minimum supported server Windows Server 2008 [desktop apps only]
Header wincrypt.h

See also

CERT_LOGOTYPE_EXT_INFO