Prev Next
WINTRUST_PROVIDER_CLIENT_INFO info
The WINTRUST_PROVIDER_CLIENT_INFO structure contains information about
the client component of a trust provider. The trust provider’s WinTrustProviderClientInitialize
function passes WinTrust a pointer to this dispatch table.
typedef struct _WINTRUST_PROVIDER_CLIENT_INFO {
DWORD dwRevision;
LPWINTRUST_PROVIDER_CLIENT_SERVICES lpServices;
DWORD dwActionIdCount;
GUID * lpActionIdArray;
} WINTRUST_PROVIDER_CLIENT_INFO, *LPWINTRUST_PROVIDER_CLIENT_INFO;
Members
-
dwRevision
-
Indicates the revision level of the trust provider. Currently, a trust
provider must set this value to WIN_TRUST_REVISION_1_0.
-
lpServices
-
Pointer to a WINTRUST_PROVIDER_CLIENT_SERVICES
structure that contains pointers to a set of functions implemented by the
trust provider. WinTrust can call these functions to access the services of
the trust provider.
-
dwActionIdCount
-
Specifies the number of action identifier entries in the lpActionIdArray
array.
-
lpActionIdArray
-
Pointer to an array of GUID pointers. Each GUID
structure identifies an action that the trust provider can handle.
See Also
GUID, WINTRUST_PROVIDER_CLIENT_SERVICES,
WinTrustProviderClientInitialize