PFN_CERT_STORE_PROV_SET_CRL_PROPERTY callback function (wincrypt.h)
An application-defined callback function that is called by CertSetCRLContextProperty before setting the CRL's property. It is also called by CertGetCRLContextProperty when getting a hash property that needs to be created and then persisted through the set.
Upon input, the property has not been set for the pCrlContext parameter.
Syntax
PFN_CERT_STORE_PROV_SET_CRL_PROPERTY PfnCertStoreProvSetCrlProperty;
BOOL PfnCertStoreProvSetCrlProperty(
[in] HCERTSTOREPROV hStoreProv,
[in] PCCRL_CONTEXT pCrlContext,
[in] DWORD dwPropId,
[in] DWORD dwFlags,
[in] const void *pvData
)
{...}
Parameters
[in] hStoreProv
Provider-specific value returned in CERT_STORE_PROV_INFO by CertDllOpenStoreProv.
[in] pCrlContext
See CertSetCRLContextProperty.
[in] dwPropId
See CertSetCRLContextProperty.
[in] dwFlags
Copy of the dwFlags passed as a parameter to CertSetCRLContextProperty.
[in] pvData
See CertSetCRLContextProperty.
Return value
Returns TRUE if it is okay to set the property.
Requirements
Requirement | Value |
---|---|
Minimum supported client | Windows XP [desktop apps only] |
Minimum supported server | Windows Server 2003 [desktop apps only] |
Target Platform | Windows |
Header | wincrypt.h |