SP_INF_SIGNER_INFO_V1_A 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_V1_A {
  DWORD cbSize;
  CHAR  CatalogFile[MAX_PATH];
  CHAR  DigitalSigner[MAX_PATH];
  CHAR  DigitalSignerVersion[MAX_PATH];
} SP_INF_SIGNER_INFO_V1_A, *PSP_INF_SIGNER_INFO_V1_A;

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.

Remarks

Note

The setupapi.h header defines SP_INF_SIGNER_INFO_V1 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