PFN_CERT_STORE_PROV_CLOSE callback function (wincrypt.h)

An application-defined callback function that is called by CertCloseStore when the store's reference count is decremented to zero.

Syntax

PFN_CERT_STORE_PROV_CLOSE PfnCertStoreProvClose;

void PfnCertStoreProvClose(
  [in] HCERTSTOREPROV hStoreProv,
  [in] DWORD dwFlags
)
{...}

Parameters

[in] hStoreProv

Provider-specific value returned in CERT_STORE_PROV_INFO by CertDllOpenStoreProv.

[in] dwFlags

Copy of the dwFlags passed as a parameter to CertCloseStore.

Return value

None

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