SIGNER_FILE_INFO structure
The SIGNER_FILE_INFO structure specifies a file to sign.
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_FILE_INFO {
DWORD cbSize;
LPCWSTR pwszFileName;
HANDLE hFile;
} SIGNER_FILE_INFO, *PSIGNER_FILE_INFO;
Members
-
cbSize
-
The size, in bytes, of the structure.
-
pwszFileName
-
A pointer to a null-terminated string that contains the name of the file to sign.
-
hFile
-
An open handle to the file specified by the pwszFileName member. If this member contains a valid handle, this handle is used to access the file. This member can be set to NULL.
Requirements
Requirement | Value |
---|---|
Minimum supported client |
Windows XP [desktop apps only] |
Minimum supported server |
Windows Server 2003 [desktop apps only] |
See also