SIGNER_ATTR_AUTHCODE structure
The SIGNER_ATTR_AUTHCODE structure specifies attributes for an Authenticode signature.
Note
This structure is not defined in any header file. To use this structure, you must define it yourself as shown in this topic.
Syntax
typedef struct _SIGNER_ATTR_AUTHCODE {
DWORD cbSize;
BOOL fCommercial;
BOOL fIndividual;
LPCWSTR pwszName;
LPCWSTR pwszInfo;
} SIGNER_ATTR_AUTHCODE, *PSIGNER_ATTR_AUTHCODE;
Members
-
cbSize
-
The size, in bytes, of the structure.
-
fCommercial
-
TRUE to sign the subject as a commercial publisher; otherwise, FALSE.
-
fIndividual
-
TRUE to sign the subject as an individual publisher; otherwise, FALSE.
-
pwszName
-
The display name of the file upon download.
-
pwszInfo
-
The display name of the URL of the file upon download.
Requirements
Requirement | Value |
---|---|
Minimum supported client |
Windows XP [desktop apps only] |
Minimum supported server |
Windows Server 2003 [desktop apps only] |
See also