CertStoreProvReadCRLCallback

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, may be exported to support other providers.

BOOL WINAPI CertStoreProvReadCRLCallback(
  IN HCERTSTOREPROV hStoreProv,       
  IN PCCRL_CONTEXT pStoreCrlContext,  
  IN DWORD dwFlags,                   
  OUT PCCRL_CONTEXT *ppProvCrlContext  
);
 

Parameters

hStoreProv
The provider-specific value returned in CERT_STORE_PROV_INFO by CertDllOpenStoreProv.
pStoreCrlContext
The context of the CRL to be read.
dwFlags
This parameter is reserved for future use and is set to zero.
ppProvCrlContext
A pointer to a pointer to provider's copy of the CRL context. The context will be freed by calling CertFreeCRLContext.

Return Values

Returns TRUE if the CRL was successfully read.