Not
Åtkomst till den här sidan kräver auktorisering. Du kan prova att logga in eller ändra kataloger.
Åtkomst till den här sidan kräver auktorisering. Du kan prova att ändra kataloger.
The FILEPATHS_SINGNERINFO structure stores source and target path information, and also file signature information. The setup functions send FILEPATHS_SIGNERINFO as a parameter in several of the notifications sent to callback routines. For more information, see Notifications.
Syntax
typedef struct _FILEPATHS_SIGNERINFO_W {
PCWSTR Target;
PCWSTR Source;
UINT Win32Error;
DWORD Flags;
PCWSTR DigitalSigner;
PCWSTR Version;
PCWSTR CatalogFile;
} FILEPATHS_SIGNERINFO_W, *PFILEPATHS_SIGNERINFO_W;
Members
Target
Path to the target file.
Source
Path to the source file. This member is not used when the FILEPATHS structure is used with a file delete operation.
Win32Error
If an error occurs, this member is the system error code. If no error has occurred, it is NO_ERROR.
Flags
Additional information that depends on the notification sent with the FILEPATHS_SIGNERINFO structure.
For SPFILENOTIFY_COPYERROR notifications, Flags specifies dialog box behavior and can be one of the following values.
For SPFILENOTIFY_FILEOPDELAYED notifications, Flags specifies the type of file operation delayed and can be one of the following values.
| Value | Meaning |
|---|---|
|
A file copy operation was delayed. |
|
A file delete operation was delayed. |
DigitalSigner
Digital signer of the file.
Version
Version of the file.
CatalogFile
Catalog file.
Remarks
Note
The setupapi.h header defines FILEPATHS_SIGNERINFO as an alias that 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 is 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 |