CertStoreProvFreeFindCRL callback function

The CertStoreProvFreeFindCRL callback function is called when the certificate returned by the CertStoreProvFindCRL callback was not used, and thus released, in a subsequent call to CertStoreProvFindCRL. Before the CLOSE callback is called, all certificates returned by the CertStoreProvFindCRL callback must be released by the provider using CertStoreProvFindCRL or CertStoreProvFreeFindCRL.

Syntax

BOOL WINAPI CertStoreProvFreeFindCRL(
  _In_ HCERTSTOREPROV hStoreProv,
  _In_ PCCRL_CONTEXT  pCrlContext,
  _In_ void           *pvStoreProvFindInfo,
  _In_ DWORD          dwFlags
);

Parameters

hStoreProv [in]

HCERTSTOREPROV handle to a certificate store.

pCrlContext [in]

A pointer to a CRL_CONTEXT.

pvStoreProvFindInfo [in]

A pointer to a buffer containing find information.

dwFlags [in]

Any needed flag values.

Return value

Returns TRUE if the function succeeds or FALSE if it fails.

Requirements

Requirement Value
Minimum supported client
Windows XP [desktop apps only]
Minimum supported server
Windows Server 2003 [desktop apps only]

See also

CertStoreProvFindCRL

CRL_CONTEXT