CertStoreProvReadCRLCallback callback function
An application-defined callback function that reads the provider's copy of the CRL context. If one exists, a new CRL context is created.
Currently not called directly by the certificate store functions. However, might be exported to support other providers.
Syntax
BOOL WINAPI CertStoreProvReadCRLCallback( _In_ HCERTSTOREPROV hStoreProv, _In_ PCCRL_CONTEXT pStoreCrlContext, _In_ DWORD dwFlags, _Out_ PCCRL_CONTEXT *ppProvCrlContext ); typedef void (*PFN_CERT_STORE_PROV_READ_CRL)();
Parameters
- hStoreProv [in]
-
Provider-specific value returned in CERT_STORE_PROV_INFO by CertDllOpenStoreProv.
- pStoreCrlContext [in]
-
A pointer to the CRL_CONTEXT of the CRL to be read.
- dwFlags [in]
-
Reserved for future use and is set to zero.
- ppProvCrlContext [out]
-
A pointer to a pointer to provider's copy of the CRL context. The context will be freed by calling CertFreeCRLContext.
Return value
Returns TRUE if the CRL was successfully read.
Requirements
|
Minimum supported client |
Windows XP [desktop apps only] |
|---|---|
|
Minimum supported server |
Windows Server 2003 [desktop apps only] |
|
Header |
|
See also