WINTRUST_CATALOG_INFO
The WINTRUST_CATALOG_INFO structure is used when calling WinVerifyTrust to verify a member of a Microsoft catalog.
typedef struct WINTRUST_CATALOG_INFO_
{
DWORD cbStruct;
DWORD dwCatalogVersion;
LPCWSTR pcwszCatalogFilePath;
LPCWSTR pcwszMemberTag;
LPCWSTR pcwszMemberFilePath;
HANDLE hMemberFile;
} WINTRUST_CATALOG_INFO, *PWINTRUST_CATALOG_INFO;
Members
- cbStruct
- Count of bytes in this structure.
- dwCatalogVersion
- Catalog version number. This member is optional.
- pcwszCatalogFilePath
- The full path and file name of the catalog file containing the member to be verified. This member is required.
- pcwszMemberTag
- Tag of a member file to be verified. This member is required.
- pcwszMemberFilePath
- The full path and file name of the catalog member file to be verified. This member is required.
- hMemberFile
- Handle of the open catalog member file to be verified. The handle must be to a file with at least read permissions. This member is optional.
Windows NT/2000: Requires Windows NT 4.0 or later.
Windows 95/98: Unsupported.
Header: Declared in winbase.h.