PFN_CERT_STORE_PROV_DELETE_CRL callback function (wincrypt.h)

An application-defined callback function that is called by CertDeleteCRLFromStore before deleting the CRL from the store.

Syntax

PFN_CERT_STORE_PROV_DELETE_CRL PfnCertStoreProvDeleteCrl;

BOOL PfnCertStoreProvDeleteCrl(
  [in] HCERTSTOREPROV hStoreProv,
  [in] PCCRL_CONTEXT pCrlContext,
  [in] DWORD dwFlags
)
{...}

Parameters

[in] hStoreProv

Provider-specific value returned in CERT_STORE_PROV_INFO by CertDllOpenStoreProv.

[in] pCrlContext

A pointer to the CRL context to be deleted.

[in] dwFlags

Reserved for future use and is set to zero.

Return value

Returns TRUE if it is okay to delete from the store. Otherwise, returns FALSE.

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

See also

Callback Functions