SP_INF_SIGNER_INFO_V2_W structure (setupapi.h)

The SP_INF_SIGNER_INFO structure stores information about an INF file's digital signature.

Syntax

typedef struct _SP_INF_SIGNER_INFO_V2_W {
  DWORD cbSize;
  WCHAR CatalogFile[MAX_PATH];
  WCHAR DigitalSigner[MAX_PATH];
  WCHAR DigitalSignerVersion[MAX_PATH];
  DWORD SignerScore;
} SP_INF_SIGNER_INFO_V2_W, *PSP_INF_SIGNER_INFO_V2_W;

Members

cbSize

Size of this structure, in bytes.

CatalogFile[MAX_PATH]

Path to the catalog file, stored in an array of maximum size MAX_PATH characters.

DigitalSigner[MAX_PATH]

Path to the digital signer of the file, stored in an array of maximum size MAX_PATH characters.

DigitalSignerVersion[MAX_PATH]

Version of the digital signer, stored in an array of size MAX_PATH characters.

SignerScore

Remarks

Note

The setupapi.h header defines SP_INF_SIGNER_INFO_V2 as an alias which automatically selects the ANSI or Unicode version of this function based on the definition of the UNICODE preprocessor constant. Mixing usage of the encoding-neutral alias with code that not encoding-neutral can lead to mismatches that result in compilation or runtime errors. For more information, see Conventions for Function Prototypes.

Requirements

Requirement Value
Minimum supported client Windows XP [desktop apps only]
Minimum supported server Windows Server 2003 [desktop apps only]
Header setupapi.h

See also

Overview

Structures